Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like to be able to generate several random sets of 3 numbers (ex:
563, 742, 094, etc). What formula can I use to set this up in excel? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=RAND()*1000
The formula above will generate random numbers up to 999. You will want to format the cells as number, no decimal places "Katie" wrote: I would like to be able to generate several random sets of 3 numbers (ex: 563, 742, 094, etc). What formula can I use to set this up in excel? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=INT(RAND()*999)+1
This will give you a three digit random whole number but there's no guarantee that a number wont be duplicated if you drag it down a long way. The 999 +1 in the formula is to ensure you don't get a zero. Bear in mind that RAND() will recalculate every time anything else calculates so you will need to Copy Paste Special Values all the cells that have the above formula in them to avoid the results changing constantly. Regards, Alan. "Katie" wrote in message ... I would like to be able to generate several random sets of 3 numbers (ex: 563, 742, 094, etc). What formula can I use to set this up in excel? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
How do I create a List in Excel 2000 | Excel Worksheet Functions | |||
VBA "Rnd" Function: Truly Random? | Excel Discussion (Misc queries) | |||
If I create a random list in Excel, does it repeat numbers? | Excel Worksheet Functions | |||
How do you create a random number generator in Excel? | Excel Worksheet Functions |