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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
jonbox
Helper II
Helper II

Add a new column for a random sample

Hi,

 

I'm looking to randomly select 50% of rows in a table based on a filter, creating a new column that adds "Sampled" to the row being sampled"

 

I've tried the following code but it doesn't work as sample takes multiple columns into account when returning. Countblank is based on a column i created to separate low value & high value assets. 

 

 

 

Sampled = SAMPLE(COUNTBLANK('Asset'[Blank Value]) / 2 , 'Assets', 'Assets'[RFID Tag],ASC)

 

 

 

 

e.g. if i have the below table, i want to take 50% of all rows that have a value "Low".

IDValue
1Low
2Low
3High
4Low
5Low
7High
8Low
9Low
10High

 

Which would create this column:

only takes into consideration low value assets, 50% Of the 6 low value assets = 3, so only 3 sampled.

 

IDValueSample
1LowSampled
2Low 
3High 
4LowSampled
5Low 
7High 
8LowSampled
9Low 
10High 

 

Thank you!!

 

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

I'm not sure if I understood you correctly, but try this anyway

Screenshot_3.png

View solution in original post

3 REPLIES 3
Ahmedx
Super User
Super User

you forgot the ) after ASC
VAR _SampleSize = SELECTCOLUMNS( SAMPLE(_randomlyselect,_tbl,[Asset Code],ASC),"@Asset Code",[Asset Code],"@High Value Asset 2",[High Value Asset 2])

Ahmedx
Super User
Super User

I'm not sure if I understood you correctly, but try this anyway

Screenshot_3.png

Hi Ahmed, Thanks for the response.

 

I've got as far as the return expression but as soon as i put that in it says unexpected expression return.

 

jonbox_0-1690902139660.png

Do you know why this might be?

 

Sampled = 
VAR _select = "Low Value"
VAR _tbl = FILTER(ALL('hardcat HardcatAssets1'),'hardcat HardcatAssets1'[High Value Asset 2]=_select)
VAR _randomlyselect = COUNTROWS(_tbl) * 0.1 -- 10%
VAR _SampleSize = SELECTCOLUMNS( SAMPLE(_randomlyselect,_tbl,[Asset Code],ASC,"@Asset Code",[Asset Code],"@High Value Asset 2",[High Value Asset 2])
RETURN
 IF(COUNTROWS(FILTER(_SampleSize,[@Asset Code]=[Asset Code]&&[@High Value Asset 2]=[High Value Asset 2])),"Sampled")

//SAMPLE(COUNTBLANK('hardcat HardcatAssets1'[Blank Value]) / 10 , 'hardcat HardcatAssets1', 'hardcat HardcatAssets1'[RFID Tag],ASC)

 

Thanks

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.