Forum Discussion
Sowmiya
7 years agoHelper III
DAX
Hi Community, =SELECTEDVALUE(Table[A]) will return the "Single Selected" Value selected in the Filter Visual. When Multiple Value is Selected in Filter, What is the DAX to display Multiple Selec...
- 7 years ago
Sowmiya Is this what you are looking for ? Try this as a Measure..
Test110New = VAR _Concat = CALCULATE(CONCATENATEX(VALUES(Test110CrossSelection[Product]),Test110CrossSelection[Product],",")) VAR _IsFiltered = IF(ISFILTERED(Test110CrossSelection[Product]),_Concat,"No Selection") RETURN _IsFiltered
PattemManohar
7 years agoCommunity Champion
Sowmiya Is this what you are looking for ? Try this as a Measure..
Test110New = VAR _Concat = CALCULATE(CONCATENATEX(VALUES(Test110CrossSelection[Product]),Test110CrossSelection[Product],",")) VAR _IsFiltered = IF(ISFILTERED(Test110CrossSelection[Product]),_Concat,"No Selection") RETURN _IsFiltered
Sowmiya
7 years agoHelper III
Yes, this is what actually I was looking for. Measure Works fine.
Thanks PattemManohar