Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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?
Thanks,
Vinoth
Solved! Go to Solution.
@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
@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.
Thanks,
Vinoth
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 114 | |
| 105 | |
| 40 | |
| 34 | |
| 25 |