Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
Looking for some advice. I have a report that has multiple filters applied to it via the filter panel, i also have a card visual which contains a measure that shows all the filters applied to that page, whether it be 1 or multiple from different columns.
However the problem i have is when blank is included in the selection, the card visual showing the filters does to show that blank is being selected. So in the below screenshot (Blank) and No are selected, yet the card visual only shows that No is. I need the output to be (Blank), No.
Thanks in advance.
JJ
Solved! Go to Solution.
Hi @DW868990 ,
You can use the following DAX:
measure =
var _select=SELECTCOLUMNS('Table',"1",'Table'[Group])
return
IF(
MAX('Table'[Group]) in _select &&
ISFILTERED('Table'[Group])&&SELECTEDVALUE('Table'[Group])=BLANK(),"Blank"&","&MAX('Table'[Group]),BLANK())
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.
Hi @DW868990 ,
You can use the following DAX:
measure =
var _select=SELECTCOLUMNS('Table',"1",'Table'[Group])
return
IF(
MAX('Table'[Group]) in _select &&
ISFILTERED('Table'[Group])&&SELECTEDVALUE('Table'[Group])=BLANK(),"Blank"&","&MAX('Table'[Group]),BLANK())
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.
Hi @DW868990 ,
Here are the steps you can follow:
1. Create measure.
measure =
var _select=SELECTCOLUMNS('Table',"1",'Table'[Group])
return
IF(
"No" in _select &&
ISFILTERED('Table'[Group])&&SELECTEDVALUE('Table'[Group])=BLANK(),BLANK(),0)
2. Result:
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
Thanks @v-yangliu-msft , its nearly there.
That works fine for when only blank is selected but if No, and Blank are both selected I need the card visual to show - Blank, No.
Thanks in advance.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
141 | |
121 | |
112 | |
59 | |
58 |