Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

The best way to get random data from a table

I have a list with 532 rows. Those rows are splitted by months (like 200 rows as January, 200 rows as February and 132 rows as March).

 

What is the best way to add column with unique random number between 1 and 532?

I tried 

Random = RANDBETWEEN( 1 , COUNTROWS(NETWORK_ORDER) )

But it generates duplicates.

 

What I want to achieve is to be able to randomly select 50 rows from each month.

I thought to generate this unique random value and them apply some filters.

 

What do you think?

 

 

1 REPLY 1
Thejeswar
Resident Rockstar
Resident Rockstar

Hi ,

You may try to use the INDEX column to get unique numbers.

 

Below is something that I came across in a blog. You can try doing it this way to get unique Random values.

 

In DAX, you can use RAND() function  to generate random numbers. Similarly, to generate random numbers between two numbers, use  RANDBETWEEN().

In Power Query, List.Random() creates a list of random numbers, while Number.Random() creates a single random number. You can add an index column before using the Number.Random() to get different random numbers on each row. You can delete the index column after the Number.Random() step. There isn't a List.RandomBetween() but Number.RandomBetween() can be used along with index column to generate numbers between two specified values.

 

Regards,

 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.