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
pbrainard
Helper III
Helper III

Filter by Measure Amount (1k, 5k, 10k...)

I have a list of Donor Names and I want to be able to have a slicer that shows Donors that donated up to $1k, between 1k and 5k, 5k to 10k, etc.) I don't know where to start! 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @pbrainard ,

 

Please try the measure and apply it as a visual-level filter.

 

Measure = 
VAR _sum =
    SUM ( 'Table'[Amount] )
VAR range =
    SWITCH (
        TRUE (),
        _sum < 1000, "< 1k",
        _sum < 5000, "1k - 5k",
        _sum < 10000, "5k - 10k",
        ">= 10k"
    )
RETURN
    COUNTROWS ( FILTER ( 'Table', range IN VALUES ( Slicer[Range] ) ) )

winniz_0-1660034403528.png

winniz_1-1660034414703.png

 

My PBIX file: Filter by Measure Amount.pbix

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
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

4 REPLIES 4
Anonymous
Not applicable

Hi @pbrainard ,

 

Please try the measure and apply it as a visual-level filter.

 

Measure = 
VAR _sum =
    SUM ( 'Table'[Amount] )
VAR range =
    SWITCH (
        TRUE (),
        _sum < 1000, "< 1k",
        _sum < 5000, "1k - 5k",
        _sum < 10000, "5k - 10k",
        ">= 10k"
    )
RETURN
    COUNTROWS ( FILTER ( 'Table', range IN VALUES ( Slicer[Range] ) ) )

winniz_0-1660034403528.png

winniz_1-1660034414703.png

 

My PBIX file: Filter by Measure Amount.pbix

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Thank you, this works great!!

Another method (if you add Upper and Lower columns to your slicer table):

Measure_2 = 
CALCULATE(
    COUNTROWS('Table'),
    FILTER(
        'Table',
        'Table'[Amount] > MIN('Range'[Lower])
            && 'Table'[Amount] <= MAX('Range'[Upper])
    )
)

If you add another category to your slicer table, this method won't require any changes.

 

littlemojopuppy
Community Champion
Community Champion

Hi @pbrainard 

 

Do you have some sample data to play with?

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.