Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have a table with no data in the table currently. I would like to show "No Data" if data is not available in the table. I do not have any filters for this table.
Can you please let me know how to show "No Data" if table is empty and without filters.
Thank you!
Solved! Go to Solution.
Hi @ashuaswinireddy ,
I created some data:
Table1:
Here are the steps you can follow:
1. Create measure.
isempty =
var _if=
ISEMPTY (
CALCULATETABLE (
'Table1',
'Table1'[Group]
)
)
return
IF(
_if=TRUE(),"No Data","Data")
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
Hi @ashuaswinireddy ,
I created some data:
Table1:
Here are the steps you can follow:
1. Create measure.
isempty =
var _if=
ISEMPTY (
CALCULATETABLE (
'Table1',
'Table1'[Group]
)
)
return
IF(
_if=TRUE(),"No Data","Data")
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
@ashuaswinireddy , follow this approch
https://exceleratorbi.com.au/show-or-hide-a-power-bi-visual-based-on-selection/
but here you need check for measure like
countrows(Table)
based on above measure change color etc
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
69 | |
68 | |
40 | |
29 | |
26 |
User | Count |
---|---|
88 | |
49 | |
45 | |
38 | |
37 |