Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 40 | |
| 37 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 37 | |
| 28 | |
| 27 |