Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Vigneshrao
New Member

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.

 

Vigneshrao_1-1726729799019.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @Vigneshrao 

Based on your information, I create some sample table:

vyohuamsft_0-1726812166321.png

 

Create a table view and a stacked column view.

vyohuamsft_2-1726812575779.png

 

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:

vyohuamsft_3-1726812732374.png

 

vyohuamsft_4-1726812743131.png

 

 

 

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.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi, @Vigneshrao 

Based on your information, I create some sample table:

vyohuamsft_0-1726812166321.png

 

Create a table view and a stacked column view.

vyohuamsft_2-1726812575779.png

 

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:

vyohuamsft_3-1726812732374.png

 

vyohuamsft_4-1726812743131.png

 

 

 

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.

Selva-Salimi
Solution Sage
Solution Sage

@Vigneshrao 

 

it is not clear what you expect as output. give some example

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

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.