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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

capture slicer selection

Need a dax to capture second higher slicer selection. In my case it is 100:

 

Capture4.PNG

I know I can get selected value when single selection with:

SELECTEDVALUE('price table'[price max])

 

But how to get this with multiple ones?

I am gonna use it later to create sales measure to work on ranges selected on slicer

1 ACCEPTED SOLUTION

@Anonymous,

 

Change it as follows.

Measure =
MAXX (
    FILTER (
        ALLSELECTED ( 'price table'[price max] ),
        'price table'[price max] < MAX ( 'price table'[price max] )
    ),
    'price table'[price max]
)
    + 0
Community Support Team _ Sam Zha
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
v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

You may use measure below.

Measure =
MINX (
    TOPN ( 2, VALUES ( 'price table'[price max] ), 'price table'[price max], DESC ),
    'price table'[price max]
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks Sam,

 

I think I was not precise in my question. Your measure is working but not in all cases, which I had not mentioned before.

It works on total only.

Sorry for this. I hope you can help further.

How to do a measure to work in a matrix like this?:

 

Capture5.PNG

An output should show the figures like those on red.

 

@Anonymous,

 

Change it as follows.

Measure =
MAXX (
    FILTER (
        ALLSELECTED ( 'price table'[price max] ),
        'price table'[price max] < MAX ( 'price table'[price max] )
    ),
    'price table'[price max]
)
    + 0
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Perfect, Thanks!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors