I would greatly appreciate help for a problem that I don't think is too difficult but my VBA are still ramping up. My objective is based on the picture of the table below:
-------------Text of Spreadsheet Below (If there's a way to post the actual spreadsheet, please let me know)----------------
[TABLE="width: 384"]
<tbody>[TR]
[TD="colspan: 5"]Generate List of Record Numbers to Test[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Step 1:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Enter the total number of records:[/TD]
[TD]70[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Step 2:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Enter number of records to test:[/TD]
[TD]36[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Step 3:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Press 'Generate' button:[/TD]
[TD]Generate[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 3"]Record Numbers to Test:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
-------------------------------------------------------------------------------
THANK YOU in advance!
Lon
- For the table below, using VBA produce 36 (F5) unique and random numbers between 1 and 70 (F3)
- Sorted from lowest to highest with the lowest number in the list showing in cell A11 (first row below 'Record Numbers to Test:'), 2nd lowest number in A12, etc
- Pressing the 'Generate' button (F7) will clear the old list of number and replace it with a new list base on two variable (F3 & F5)
-------------Text of Spreadsheet Below (If there's a way to post the actual spreadsheet, please let me know)----------------
[TABLE="width: 384"]
<tbody>[TR]
[TD="colspan: 5"]Generate List of Record Numbers to Test[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Step 1:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Enter the total number of records:[/TD]
[TD]70[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Step 2:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Enter number of records to test:[/TD]
[TD]36[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Step 3:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]Press 'Generate' button:[/TD]
[TD]Generate[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="colspan: 3"]Record Numbers to Test:[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
-------------------------------------------------------------------------------
THANK YOU in advance!
Lon