
Tips.Net > ExcelTips Home > Formulas > Random Numbers > Picking Different Random Numbers from a Range
Summary: If you need to randomly select multiple items from a list, you obviously don’t want those items to duplicate each other. This tip explains a couple of different ways you can derive unique random elements from a list, all through the use of formulas. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, and Excel 2003.)
Let's say that you have a list of employees (or products, or widgets, or whatever) and that you want to pick two items from this list, at random. There are a couple of different worksheet functions you can use to pick items from the list, such as RANDOM and RANDBETWEEN.
Many people use the RANDBETWEEN function because it is very easy and provides a random number within a range. Thus, if you have 25 items in your list, RANDBETWEEN can return a number between 1 and 25, which can then correspond to items in the list.
For example, let's say that your list of items is in the range A2:A26, and that you give this range the name Items. You could then put the following formula in cell C2 to return a number between 1 and the number of Items:
=RANDBETWEEN(1,ROWS(Items))
Copy this formula to cell C3, and you now have two random numbers that represent items from the list. In cell D2 and D3 you could put formulas like this to get the actual names from the list:
=INDEX(Items,C2)
The only problem with this approach is that it is possible for both instances of RANDBETWEEN (cells C2 and C3) to return the same value, and thus you end up with the same item selected twice from your list.
One way to work around this potential problem is to actually select three items from the list instead of two. If the first two items are the same, then the third can be used as a "fallback" item to provide the unique second. The method is not foolproof, as it is possible--but quite improbable--that all three will be the same.
A different approach to selecting items from the list would be to assign each item its own random value, and then select based on the highest number in the series. The RANDOM function returns a random value between 0 and 1. In each cell of column B, just to the right of each item in column A, put this formula:
=RAND()
Select the range of cells (B2:B26) and name the range, using a name such as ItemNums. You can then determine the first random name from the list by using the following array formula:
=OFFSET(A$1,SUM((LARGE(ItemNums,1)=(ItemNums))*ROW(ItemNums))-1,0)
In order to signify that this is an array formula, enter it by pressing Shift+Ctrl+Enter. The formula should return a single name. You can then use the following array formula to return the second name:
=OFFSET(A$1,SUM((LARGE(ItemNums,2)=(ItemNums))*ROW(ItemNums))-1,0)
The reason that using the RAND function approach works better than using RANDBETWEEN is because the chance that RAND will return two identical values is infinitesimally small, whereas the chances of RANDBETWEEN doing so is much higher.
Tip #2874 applies to Microsoft Excel versions: 97 2000 2002 2003
Organize Your Data! Using the powerful sorting capabilities of Excel can help you get your data into just the order you need. Find out how you can use the full capabilities of sorting to your benefit.
Check out ExcelTips: Serioius Sorting today!
Thousands of ExcelTips, available for immediate download. Have all the Microsoft Excel info you need, right at your fingertips. (more information...)
Ask an Excel Question
Make a Comment
ExcelTips FAQ
ExcelTips Premium
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Word2007 Tips
WordTips
Advertise on the
ExcelTips Site