Selecting 100 rows from a sheet
Hi All,
I need to extract a sample of 100 records from a big volume of 30 million records for a reconciliation purpose. please suggest how to go about the same.
Thanks in advance
-
Hello Ganesh.
- If you just need 100 random records from the dataset, you could sort by any column and then use the Top N property to display the first N records.
- In case you would like to really randomize the selection, you could add a new column with the RAND() function in it and then sort by this column.
I hope this helps.
Please sign in to leave a comment.
Comments
1 comment