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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
ardianfirman06
Frequent Visitor

DAX Random Sample with criteria 5% of the volume

Hi, 

 

Is there any way to create a random sample with criteria of 5% of the volume from each category

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ardianfirman06 ,

According to your description You want to create a random sample of the aggregated value(Volume: 0-5%) grouped by a certain column.Right?

Here are the steps you can follow:

(1)This is my test data:

vyangliumsft_0-1661495029647.png

(2)If you want to create a random sample in visual, you can create a measure:

ran_value = SUM(Table1[value])*RAND()*5/100

Then you can put it in your visual like this:

vyangliumsft_1-1661495029655.png

If you don’t want to have the “Total”, you can close it in Format Pane.

vyangliumsft_2-1661495029659.png

You can click

vyangliumsft_3-1661495029660.png

 to recalculate the value of this measure to achieve a random sample.

(3)If you want to create a random sample in table, you can click “new table”.

vyangliumsft_4-1661495029661.png

Table = SELECTCOLUMNS( SUMMARIZE('Table1','Table1'[name],"Sum Value",SUM(Table1[value])) , "name",[name],"Ran Value",[Sum Value] * RAND()*5/100)

Then you can click

vyangliumsft_5-1661495029661.png

to recalculate the table to achieve a random sample, like this:

vyangliumsft_6-1661495029663.png

If this solution is different from your needs, can you share sample data and sample output in table format? Or a ample .pbix file after removing sensitive data. We can better understand the problem and help you.

 

If you need pbix, please click here.

case_02.pbix

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @ardianfirman06 ,

According to your description You want to create a random sample of the aggregated value(Volume: 0-5%) grouped by a certain column.Right?

Here are the steps you can follow:

(1)This is my test data:

vyangliumsft_0-1661495029647.png

(2)If you want to create a random sample in visual, you can create a measure:

ran_value = SUM(Table1[value])*RAND()*5/100

Then you can put it in your visual like this:

vyangliumsft_1-1661495029655.png

If you don’t want to have the “Total”, you can close it in Format Pane.

vyangliumsft_2-1661495029659.png

You can click

vyangliumsft_3-1661495029660.png

 to recalculate the value of this measure to achieve a random sample.

(3)If you want to create a random sample in table, you can click “new table”.

vyangliumsft_4-1661495029661.png

Table = SELECTCOLUMNS( SUMMARIZE('Table1','Table1'[name],"Sum Value",SUM(Table1[value])) , "name",[name],"Ran Value",[Sum Value] * RAND()*5/100)

Then you can click

vyangliumsft_5-1661495029661.png

to recalculate the table to achieve a random sample, like this:

vyangliumsft_6-1661495029663.png

If this solution is different from your needs, can you share sample data and sample output in table format? Or a ample .pbix file after removing sensitive data. We can better understand the problem and help you.

 

If you need pbix, please click here.

case_02.pbix

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Thank you for this. this is really help.

 

is there any function that we can use to keep the sample ? so the table of sampling wont changed on every running and increase the sample if there is additional data ingested to the source table.

amitchandak
Super User
Super User

@ardianfirman06 , refer if these can help

https://community.powerbi.com/t5/Desktop/DAX-random-sample/m-p/386571

https://chandoo.org/wp/power-query-random-sample/

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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