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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.