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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
kiwipeet
Advocate I
Advocate I

Hide graph when no data is selected

I have a table of data containing site locations, and a related line graph showing environmental times series data belonging to that site. When I select a row in the table, the line graph shows the related data. (perfect!)

However when no site is highlighted the graph aggregates the data and shows the sum. This is misleading and incorrect.

How do I show a blank graph when nothing is selected in the table?

1 ACCEPTED SOLUTION
Nishantjain
Continued Contributor
Continued Contributor

Have you tried using this measure

 

replace the [Your measure] in the code below with the current measure that you are using in the line graph

 

 

if(isfiltered([Site Name]),[Your measure], blank())

 

 

When you use blank(), it returns no values and should leave your graph blank

 

Hope this helps

Nishant

 

View solution in original post

3 REPLIES 3
kiwipeet
Advocate I
Advocate I

More:

I've created a measure which can detect when a row is selected:
SlicerCheck = if(calculate(distinctcount([Site Name]),allselected('TakeStatus'[Site Name]))=1,"Y","N")

But how can I filter or hide data based on this?

Nishantjain
Continued Contributor
Continued Contributor

Have you tried using this measure

 

replace the [Your measure] in the code below with the current measure that you are using in the line graph

 

 

if(isfiltered([Site Name]),[Your measure], blank())

 

 

When you use blank(), it returns no values and should leave your graph blank

 

Hope this helps

Nishant

 

Hi. Thanks for replying. I got it working... Something along the lines of what you are suggesting. Ive marked your answer as correct.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.