Forum Discussion
Anonymous
2 years agoNot applicable
display multiple elements with SELECTEDVALUE (OR)
Hello, I am using the DAX measure SELECTEDVALUE to display the value of a column that is filtered in a table visual. But I can't find a way to display multiple elements. For instance, if "Fr...
Ashish_Mathur
2 years agoSuper User
Hi,
Does this measure work?
Measure = CONCATENATEX(VALUES(Data[Nationality]),Data[Nationality]," OR ")
Hope this helps.