Forum Discussion
AndrewLGoldman
Advocate I
6 years agoYear Filter on Filters Pane Requiring Single Selection Disables Single Selection If User Deselects
Hey Power BI Community, Not sure if anyone else ran into this or has any ideas, but I would be so grateful if anyone had any ideas! Right now on one of my Power BI Desktop reports I have a filte...
- Anonymous6 years ago
Hi AndrewLGoldman ,
Are you mean you want years can't be multi-selected but months can be?
Measure = IF(CALCULATE(DISTINCTCOUNT('Table'[yearmonth].[Year]),ALLSELECTED('Table'))>1,BLANK(),1)Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
MFelix
Super User
6 years agoHi AndrewLGoldman ,
A possible workaround and depeding on your visualizations is on your measures make a similar sintax to this one:
Measure = IF(DISTINCTCOUNT(Table{Year]) > 1 , BLANK(); [Measure]))
This will blank out your data, but again depends on how you have your data setup.