Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Dear Team,
I'm trying to develop a page in my MS Power BI report, the mentioned page contains multiple visuals/charts, and there is a page filter selection, when selecting this filter the visuals (all of them) they be empty I want to put message says "No Data Available" or something else however when the data comes later this message disappears and keep the filter as it is. Is there any resource or workaround solution I can follow?
Solved! Go to Solution.
To display a “No Data Available” message in Power BI visuals when they are empty, you can follow these steps:
Measure = IF(ISBLANK(SUM(Table[Column])), "No Data Available", "")
Replace Table[Column] with your actual table and column names.
Create a Card Visual: Place a card visual over your chart and set it to display the measure’s value.
Adjust Visual Properties: Turn off the category label, background, visual headers, border, etc., to make it just pure text.
Use the Selection Pane: To manage the layering of visuals, use the Selection pane to bring the chart to the front, so it’s selectable over the card.
Set the Layout Order: Ensure the card visual is behind the chart visual in the selection pane to prevent it from blocking interactions with the chart.
Remember, if you’re connected to a live SSAS cube with an MDX model, you might not be able to add measures directly.
Helping Links: Visit this link,
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
In case there is still a problem, please feel free and explain your issue in detail, It will be my pleasure to assist you in any way I can.
Hi @ihmoud008
As you need to keep the interactivity of the visuals it is not recommended to put the object with the message up to them.
But you can use the dynamic titles.
For example, I have a bar graph with products and total sales :
If I'll select the category technology it will be blank :
To add a wanted message there is an option to create a measure like :
and to make the title more visible you can make it red with conditional formatting :
the pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi @ihmoud008
As you need to keep the interactivity of the visuals it is not recommended to put the object with the message up to them.
But you can use the dynamic titles.
For example, I have a bar graph with products and total sales :
If I'll select the category technology it will be blank :
To add a wanted message there is an option to create a measure like :
and to make the title more visible you can make it red with conditional formatting :
the pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
To display a “No Data Available” message in Power BI visuals when they are empty, you can follow these steps:
Measure = IF(ISBLANK(SUM(Table[Column])), "No Data Available", "")
Replace Table[Column] with your actual table and column names.
Create a Card Visual: Place a card visual over your chart and set it to display the measure’s value.
Adjust Visual Properties: Turn off the category label, background, visual headers, border, etc., to make it just pure text.
Use the Selection Pane: To manage the layering of visuals, use the Selection pane to bring the chart to the front, so it’s selectable over the card.
Set the Layout Order: Ensure the card visual is behind the chart visual in the selection pane to prevent it from blocking interactions with the chart.
Remember, if you’re connected to a live SSAS cube with an MDX model, you might not be able to add measures directly.
Helping Links: Visit this link,
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
In case there is still a problem, please feel free and explain your issue in detail, It will be my pleasure to assist you in any way I can.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
114 | |
70 | |
64 | |
46 |