Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago

Getting only selected values from slicer

I'm trying to get just the values from a slicer. The following works, ecept when nothing is selected, it concatenates all possible selections.

 

multi values test = CONCATENATEX(ALLSELECTED('Include in table'[Include]),([Include]),",")

 

'Include in table'[Include] has values of Yes, No, Maybe. If I select 'Yes' in the slicer, then it displays Yes in the card showing the above measure. If I select Yes and No, it displays "Yes,No". If I select all three, it shows "Yes,No,Maybe". But if I don't select any of them, it also shows "Yes,No,Maybe". I think it should show nothing. What am I missing?