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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Angie_
Frequent Visitor

Get sample to cover at least certain % over the total

Hi

I have a list of items to select for sample. The sample creteria is to cover at least 40% of the total.

So from the list, I should cover at least 2 items.

May I know what is the correct way so that the 2nd item will also show "Sample selected" in the "Review Creteria" column.

Thank you.

 

Sample 1.png

1 ACCEPTED SOLUTION

Hi @Angie_ ,

 

Review Creteria = 
VAR ranki =
    RANKX ( FILTER(Table1,Table1[accum]>0.4), Table1[accum],, ASC, DENSE )
RETURN
    IF ( Table1[accum]<=0.4 || ranki =1, "Sample selected", BLANK () )
Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @Angie_ ,

 

To use this formula as below.

 

Review Creteria = 
VAR ranki =
    RANKX ( Table1, Table1[accum],, ASC, DENSE )
RETURN
    IF ( Table1[accum]<=0.4 || ranki <= 2, "Sample selected", BLANK () )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Hi Frank

 

Thanks for the solution. I would like to ask something further.

 

What if every month I have difference amount of sample to be selected, for example it might need more than 2 samples to cover at least 40%. Is there any formula that can auto detect to make sure I cover at least 40% of the total as my sample?

 

Thank you.

 

At least 40%.png

Hi @Angie_ ,

 

Review Creteria = 
VAR ranki =
    RANKX ( FILTER(Table1,Table1[accum]>0.4), Table1[accum],, ASC, DENSE )
RETURN
    IF ( Table1[accum]<=0.4 || ranki =1, "Sample selected", BLANK () )
Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.