Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I need a formula that will enable me to randomly pick (select) a number from the following numbers 15, 25,35,45,55,65,75,85,95 I'm aware of the the RAND & RANDBETWEEN functions and i have not been able to generate the output as desired. regards, |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=RANDBETWEEN(1,9)*10+5 -- Biff Microsoft Excel MVP "Ram" wrote in message ... Hi, I need a formula that will enable me to randomly pick (select) a number from the following numbers 15, 25,35,45,55,65,75,85,95 I'm aware of the the RAND & RANDBETWEEN functions and i have not been able to generate the output as desired. regards, |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Biff, it works. It's exactly what i was looking for.
"T. Valko" wrote: One way: =RANDBETWEEN(1,9)*10+5 -- Biff Microsoft Excel MVP "Ram" wrote in message ... Hi, I need a formula that will enable me to randomly pick (select) a number from the following numbers 15, 25,35,45,55,65,75,85,95 I'm aware of the the RAND & RANDBETWEEN functions and i have not been able to generate the output as desired. regards, |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ram wrote on Mon, 10 Sep 2007 21:50:08 -0700:
R I need a formula that will enable me to randomly pick R (select) a number from the following numbers R 15, 25,35,45,55,65,75,85,95 R I'm aware of the the RAND & RANDBETWEEN functions and i have R not been able to generate the output as desired. If you need several choices, the old technique of having the numbers in a column, a helper column =RAND() and sorting on the helper column will randomize your numbers. James Silverton Potomac, Maryland E-mail, with obvious alterations: not.jim.silverton.at.verizon.not |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
-- Biff Microsoft Excel MVP "Ram" wrote in message ... Thanks Biff, it works. It's exactly what i was looking for. "T. Valko" wrote: One way: =RANDBETWEEN(1,9)*10+5 -- Biff Microsoft Excel MVP "Ram" wrote in message ... Hi, I need a formula that will enable me to randomly pick (select) a number from the following numbers 15, 25,35,45,55,65,75,85,95 I'm aware of the the RAND & RANDBETWEEN functions and i have not been able to generate the output as desired. regards, |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's a general idea:
Picking 1 of 6 Random Primes: =CHOOSE(RANDBETWEEN(1,6),2, 3, 5, 7, 11, 13) -- HTH :) Dana DeLouis Windows XP & Excel 2007 "Ram" wrote in message ... Hi, I need a formula that will enable me to randomly pick (select) a number from the following numbers 15, 25,35,45,55,65,75,85,95 I'm aware of the the RAND & RANDBETWEEN functions and i have not been able to generate the output as desired. regards, |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I like the idea
another way without the ATP =INDEX({15;25;35;45;55;65;75;85;95},INT(RAND()*(10-1)+1)) -- Regards, Peo Sjoblom "Dana DeLouis" wrote in message ... Here's a general idea: Picking 1 of 6 Random Primes: =CHOOSE(RANDBETWEEN(1,6),2, 3, 5, 7, 11, 13) -- HTH :) Dana DeLouis Windows XP & Excel 2007 "Ram" wrote in message ... Hi, I need a formula that will enable me to randomly pick (select) a number from the following numbers 15, 25,35,45,55,65,75,85,95 I'm aware of the the RAND & RANDBETWEEN functions and i have not been able to generate the output as desired. regards, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can Excel randomly pick one winner out of 100 contest entries? | Excel Discussion (Misc queries) | |||
Finding a predetermined Sum from a List of Numbers | Excel Discussion (Misc queries) | |||
randomly select numbers | Excel Discussion (Misc queries) | |||
Can Excel pick random numbers from 1-300 and not repeat numbers? | Excel Discussion (Misc queries) | |||
to find missing serial numbers in randomly generated numbers | Excel Worksheet Functions |