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
vinothkumar1990
Helper II
Helper II

Don't display any visual when more than one value is selected

Hi,

 I have a client requirement. When there is a filter contains more than one value selected then line graph should not be displayed.

For example In the below model, If only one Month is selected then line graph should be displayed other it should not display any data.

Note: All the filters should be in filter pane only.

 

Can you plese help me out?

vinothkumar1990_0-1625026934496.png

 

Thanks,

Vinoth

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@vinothkumar1990 , see, a measure like this can help

 

Measure  =

var _1 = calculate(distinctcount( Date[Month]),allselected(Date[Month]))

return 

if(_1>1, [Measure], blank())

 

means display null if count < 1

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@vinothkumar1990 , see, a measure like this can help

 

Measure  =

var _1 = calculate(distinctcount( Date[Month]),allselected(Date[Month]))

return 

if(_1>1, [Measure], blank())

 

means display null if count < 1

@amitchandak - It wokred for line graph. How can i do the same in Card visual?

If more than one months are selected then Card visula should not show any data.

 

Note: I could not apply the Meaure Filter in filter pane as it is disabled.

 

vinothkumar1990_0-1625120830413.png

 

Thanks,

Vinoth

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.