WISDOMBYDATA
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me

Generate a series of unique random numbers in ms excel

2/16/2019

0 Comments

 

The Randbetween() function enables us to generate random numbers between two numbers in Excel, however; if we want to generate multiple random numbers that fall between two certain numbers and we don’t want any repeating numbers we will run into issues with Randbetween().

The reason is that each cell that contains the formula creates a random number and the cells are not in any way linked to each other and chances are that a certain number might be repeated and therefore Randbetween() does not guarantee uniqueness when it is being applied to multiple cells.

Here is an example, as you could see in the screenshot below, I inserted the =Randbetween (1,49) formula into six cells and after refreshing the sheet just a few times a duplicate number was generated (i.e. the number 33 was repeated twice). We don’t want that to happen. 
Picture
That said, here is a very neat alternative to Randbetween() that guarantees uniqueness in the random number generation for a series of cells. Let’s say we want to generate 6 unique random numbers between 1 and 49.

STEP 1] Use the rand() function to create 49 random numbers. I have applied the formula to cells A1 through A49. 
Picture
STEP 2] Use the formula below instead of the Randbetween() formula to generate random numbers between 1 and 49. This formula references the $A$1:$A$49 range and this range needs to be reference locked before being dragged to the right.
​
=MATCH(LARGE($A$1:$A$49,1),$A$1:$A$49,0)


The second argument in the LARGE statement gets incremented as the formula is dragged to the right. for example, the value for the second number will have LARGE($A$1:$A$49,2) and that number will keep on incrementing. Here is the final outcome once the formula is correctly applied to the full range and the six unique random numbers are generated.
Picture
Now no matter how many time you refresh the spreadsheet you will NEVER get any duplicates.
​
The trick behind this method is that the MATCH formula is picking up the row number for the six largest numbers in the $A$1:$A$49 range and the number order in the $A$1:$A$49 range is completely random and the numbers are always unique. This means that the largest numbers are not arranged in any particular sequence and this guarantees that six random and unique numbers will be generated when this range is referenced through the MATCH formulas.

0 Comments
<<Previous

    Categories

    All
    BI
    EXCEL
    MISC
    SQL

    Archives

    June 2020
    May 2020
    April 2020
    March 2020
    February 2020
    December 2019
    November 2019
    October 2019
    September 2019
    August 2019
    July 2019
    June 2019
    May 2019
    April 2019
    March 2019
    February 2019
    January 2019
    December 2018
    November 2018
    October 2018
    September 2018
    August 2018
    July 2018
    June 2018
    May 2018
    April 2018
    March 2018
    September 2017
    August 2017
    July 2017
    June 2017
    May 2017
    April 2017
    March 2017
    February 2017
    January 2017
    December 2016
    November 2016
    October 2016
    September 2016
    August 2016
    July 2016
    June 2016
    May 2016
    April 2016
    March 2016
    February 2016
    May 2015
    April 2015
    March 2015
    February 2015
    January 2015
    December 2014
    November 2014
    October 2014
    September 2014
    August 2014
    April 2014
    March 2014
    February 2014
    January 2014
    December 2013
    November 2013

Powered by Create your own unique website with customizable templates.
  • BLOG
    • Blog Guide
    • Blog History
  • EXCEL
    • Functions & Formulas
    • VBA & Macros
    • VLOOKUP
    • Pivot Tables
    • Conditional Formatting
    • Tricks & Shortcuts
  • BI
    • SAP BOBJ/BW
    • Tableau
  • SQL
  • ABOUT
    • About WBD
    • About Me