Forum Discussion
noble10
5 years agoFrequent Visitor
How to show specific value
I would appericate it if someone can help me. How do I create a DAX formula to only show specific value. For example, I would like to create a Dax formula to only show branch 19, 22, 27 and ex...
wdx223_Daniel
5 years agoCommunity Champion
you can add a IF function in your measures, such as
IF(SELECTEDVALUE(table[Branch]) IN {19,22,27},[old measure])
- noble105 years agoFrequent Visitor
I tried that and it doesn't seem to work either.
I was unable to generate a slicer after creating the measure.