Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I want fill a column in my list with multiples of 5 between 5 and 30. is there any formula which can solve my problem. thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=RANDBETWEEN(1,6)*5
-- Gary''s Student - gsnu200846 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=5*RANDBETWEEN(1,6)
and fill it down as necessary! Regards, Stefi €˛shaji€¯ ezt Ć*rta: Hi I want fill a column in my list with multiples of 5 between 5 and 30. is there any formula which can solve my problem. thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
For constant values that won't change when the worksheet calculates try this. Right click your sheet tab, view code and paste this in and run it Sub Fillem() For Each c In Range("A1:A100") c.Value = Application.Run("ATPVBAEN.XLA!Randbetween", 1, 6) * 5 Next End Sub Mike "shaji" wrote: Hi I want fill a column in my list with multiples of 5 between 5 and 30. is there any formula which can solve my problem. thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
randomly fill | Excel Worksheet Functions | |||
How do I randomly sort data in a column? | Excel Discussion (Misc queries) | |||
Generate column of 1's and 0's randomly | Excel Discussion (Misc queries) | |||
How do I randomly shuffle the cells in a column? | Excel Discussion (Misc queries) | |||
Randomly alter a column of names | New Users to Excel |