Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a table visual currently with 3 columns.
Region = Data Table Column
Within 35 Days = Measure that divides the number of rows with a specific value by the total number of rows.
KPI Status = Measure that displays "Expected KPI Met" or "KPI Breached" depending on value of "Winth 35 Days" Measure.
But I want the "Region" column not to display the Region names if there are no rows.
So instead of having the "Region" column using the "Region" column called
Solved! Go to Solution.
Try like this:
Create a measure as below to check values are available to the measure
Is Data Available = IF(ISBLANK([KPI Status]) && ISBLANK([Within 35 Days]) , 0,1)
Then put this measure as a visual level filter . After that filter with is 1.
If is blank not work try with [KPI Status] = ""
Try like this:
Create a measure as below to check values are available to the measure
Is Data Available = IF(ISBLANK([KPI Status]) && ISBLANK([Within 35 Days]) , 0,1)
Then put this measure as a visual level filter . After that filter with is 1.
If is blank not work try with [KPI Status] = ""
Thanks, I had to change the measure a bit, but your solution gave me a base code to get it working. 👍
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |