- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

How to show no data when bar graph is not selected.
We have created this dashboard to show the data based on the graphs. But there is a default data shown and we want it to show empty or no data and we should see data only based on the bar graph. Please help
The left side table shows the employee data. The right side bar graphs are filters. When the bars are clicked, the left side table should show filtered data. But when nothing is clicked, the table should so blank. Instead it is showing the entire data.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @Vigneshrao
Based on your information, I create some sample table:
Create a table view and a stacked column view.
Then create a new measure to replace Resource Group field, try the following DAX expression:
NoDataMessage =
IF(
ISFILTERED('Table'[Resource Group]),
MAX('Table'[Resource Group]),
BLANK()
)
When I don't click on the bar chart, the table view is empty, and when I click on it, there is the corresponding data, here is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @Vigneshrao
Based on your information, I create some sample table:
Create a table view and a stacked column view.
Then create a new measure to replace Resource Group field, try the following DAX expression:
NoDataMessage =
IF(
ISFILTERED('Table'[Resource Group]),
MAX('Table'[Resource Group]),
BLANK()
)
When I don't click on the bar chart, the table view is empty, and when I click on it, there is the corresponding data, here is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

The left side table shows the employee data. The right side bar graphs are filters. When the bars are clicked, the left side table should show filtered data. But when nothing is clicked, the table should so blank. Instead it is showing the entire data.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-31-2024 04:00 AM | |||
08-20-2019 06:07 AM | |||
06-01-2023 07:10 AM | |||
Anonymous
| 11-16-2023 12:02 PM | ||
02-08-2023 04:48 AM |
User | Count |
---|---|
141 | |
115 | |
84 | |
63 | |
48 |