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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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