![]() |
|
#5
|
||||
|
||||
|
There is no need to select anything. Also, in one place your code refers to 'randoms', but then uses a different name (object) to output the value. Such inconsistencies can lead to serious problems in a more complex macro. Try:
Code:
Sub Randoms()
Dim Rng As Range
For Each Rng In Range("A1:F20")
Rng.Value = Rnd()
Next
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to fill a cell with random numbers to do calculations? | zanat0s | Excel | 1 | 06-13-2011 10:33 AM |
filling multiple cells whislt using Filter
|
VinceO | Excel | 1 | 05-09-2011 06:38 AM |
| Display Random Numbers as Transition | greenbutton | PowerPoint | 0 | 03-09-2011 04:43 PM |
Powerpoint loops, but not to beginning
|
imeister | PowerPoint | 1 | 02-02-2011 02:05 PM |
| loops within presentations | supateach | PowerPoint | 1 | 11-23-2010 04:42 AM |