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
ecmsev
New Member

If and Slicer filters

Hi all,

 

I would like to use an IF function and not apply a measure and get blank if one or two of the slicers have filters selected.

 

How could I do that?

 

Best regards

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @ecmsev ,

 

One sample for your reference, here I create a measure using HASONEVALUE to work on it.

Measure = 
VAR A =
    HASONEVALUE ( Table1[SLICER1] )
VAR B =
    HASONEVALUE ( Table2[SLICER2] )
RETURN
    IF (
        A = TRUE ()
            && B = TRUE (),
        MAX ( Table1[SLICER1] ) - MAX ( Table2[SLICER2] ),
        0
    )

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.

View solution in original post

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

Hi @ecmsev ,

 

One sample for your reference, here I create a measure using HASONEVALUE to work on it.

Measure = 
VAR A =
    HASONEVALUE ( Table1[SLICER1] )
VAR B =
    HASONEVALUE ( Table2[SLICER2] )
RETURN
    IF (
        A = TRUE ()
            && B = TRUE (),
        MAX ( Table1[SLICER1] ) - MAX ( Table2[SLICER2] ),
        0
    )

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.
stretcharm
Memorable Member
Memorable Member

take a look at selectedvalue and hasonevalue dax functions

 

there are several videos showing how this works e.g.

https://www.youtube.com/watch?v=FI1_N-imBxI

Thanks a lot for your answer,

 

¿Is it possible to create two measures with ISFILTERED()*1 for each slicer and after use both in the IF function?

 

IF(Measure1+Measure2)>=2;"0";column1-column2)

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.