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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
MennoHoogeveen
New Member

Slicer filter matrix showing YTD on blank measure

I have a matrix showing a YTD measure. A single select slicer to select the date until which the matrix should so data. 
Now the user wants a TRUE/FALSE kind of slicer to be able to show only rows in which the current data has data (so NOT(ISBLANK([Measure])) ). I am able to do this directly on the matrix by adding a filter on field (measure) [Measure] with "is not blank". However, I have no idea how to accomplish this so the user is able to toggle it themselve.

 MatricesMatricesFieldsFields

 

Link to a .pbix example:

WeTransfer 

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

Hi  @MennoHoogeveen ,

 

Here are the steps you can follow:

1. Enter Data – create a table.

vyangliumsft_0-1694172834361.png

2. Create measure.

Flag =
var _select=SELECTEDVALUE('Slicer_Tabel'[Flag])
return
IF(
    _select="Flase"&&[Measure]=BLANK(),0,1)Flag =
var _select=SELECTEDVALUE('Slicer_Tabel'[Flag])
return
IF(
    _select="Flase"&&[Measure]=BLANK(),0,1)

3. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1694172834362.png

4. Result:

Select True:

vyangliumsft_2-1694172924003.png

Select Flase:

vyangliumsft_3-1694172924005.png

 

 

Best Regards,

Liu Yang

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

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @MennoHoogeveen ,

 

Here are the steps you can follow:

1. Enter Data – create a table.

vyangliumsft_0-1694172834361.png

2. Create measure.

Flag =
var _select=SELECTEDVALUE('Slicer_Tabel'[Flag])
return
IF(
    _select="Flase"&&[Measure]=BLANK(),0,1)Flag =
var _select=SELECTEDVALUE('Slicer_Tabel'[Flag])
return
IF(
    _select="Flase"&&[Measure]=BLANK(),0,1)

3. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1694172834362.png

4. Result:

Select True:

vyangliumsft_2-1694172924003.png

Select Flase:

vyangliumsft_3-1694172924005.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Worked perfectly, thank you!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.