March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I have page with year, month, region, country, vertical, horizontal filter and showing values on the visual by distinct count of project.
Here i have used card visuals to show
, if i random selection of other slicers again showing blank visuals. Please help to fix that
How to include all filter to validate there is blank vaues are appearing or not
Solved! Go to Solution.
Thanks for the concern from AnkitKukreja.
Hi @ssk_1984 ,
Based on your description, I've created the following sample tables:
You can modify the original code to determine if the number of Project_ID is null when all the slicers have been applied.
The modified measure is as follows:
MEASURE =
IF (
ISFILTERED ( 'Date'[Month] ) && ISFILTERED ( 'Country'[Country] )
&& ISFILTERED ( Region[Region] )
&& ISBLANK ( COUNT ( Projects[Project_ID] ) ),
"No NCs",
""
)
Here are the results:
Best Regards,
Zhu
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the concern from AnkitKukreja.
Hi @ssk_1984 ,
Based on your description, I've created the following sample tables:
You can modify the original code to determine if the number of Project_ID is null when all the slicers have been applied.
The modified measure is as follows:
MEASURE =
IF (
ISFILTERED ( 'Date'[Month] ) && ISFILTERED ( 'Country'[Country] )
&& ISFILTERED ( Region[Region] )
&& ISBLANK ( COUNT ( Projects[Project_ID] ) ),
"No NCs",
""
)
Here are the results:
Best Regards,
Zhu
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi! @ssk_1984
Can you attach your sample pbix file and share the expected solution, there might be a relationship issue among those fields.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |