Excel VB | unique random numbers
I often like to fill my excel model and workbooks with data to test out functionality and what better than a random range of numbers. (hint look in my other post about changing negative numbers to positives and vice versa if you want to make the them different sizes for instance if you wanted the numbers in the thousands).
This code below basically starts with the first cell of the selection and creates a random number and then check that number to any others in the range that are duplicates - looping until there are no matches and then carrying on to the next cell in the range to create another unique random number.
Sub RandomNoDuplicates()
Dim LowerLimit As Byte
Dim Limit2 As LongCall CheckProtectedSheet
Call CheckForMultipleAreasIf MsgBox(”This will place a unique random number in each cell in your selection?” & vbNewLine & “(n.b. existing values will be overwritten)”, vbQuestion + vbOKCancel, AT & ” - Insert random numbers without duplicates”) = vbCancel Then Exit Sub
LowerLimit = 1
Limit2 = Selection.Cells.Count
Cellen = Selection.Cells.Count
i = 1
Selection.ClearContentsFor Each rngCel In Selection
Application.StatusBar = “Processing random numbers: ” & Int((i * 100) / Cellen) & ” %”Section1:
rngCel.Value = Int((Limit2 - LowerLimit + 1) * Rnd + LowerLimit)If Application.WorksheetFunction.CountIf(Selection, rngCel.Value) = 1 Then
GoTo Section2
Else
GoTo Section1
End IfSection2:
i = i + 1Next
Application.StatusBar = FalseEnd Sub

Related Posts
About
You’re currently reading “Excel VB | unique random numbers”.
- Published:
- Tuesday, August 19th, 2008
- Author:
- Simon Page
- Category:
- Excel
- Tags:
- downloads, excel 2003, excel 2007, free, vb, vba, visual basic
What I'm Doing
- Happy Filemaker 10 day - loving it. (1 hr ago) more...
Featured Posts
- 20 of the Best Amazing Photoshop Tutorials
- Best Video Games in 2008
- Canon IXUS - Macro Photo Gallery
- Creative LEGO art design
- Design Inspiration | typography posters
- Inspiring Gallery of Video Game Concept Art
- Must Have Christmas Gadgets
- Resources of Creative Design Inspiration
- Sony HDR TG3 Full HD Digital Camcorder
- The Best iPod Touch Accessories
- Top 10 Gadgets for 2009
- Top Christmas Electronics
Categories
- Creative Design (46)
- Excel (11)
- Filemaker (5)
- Gadgets (23)
- Gaming (15)
- Music (3)
- Random (4)
- Technology (4)




No comments
Jump to comment form | comments rss | trackback uri