Forum Discussion
Anonymous
4 years agoNot applicable
Custom message in card visualization based on selected value
Hello, I have the following table and i am trying to have a card visualization which displays all the text messages associated with a barcode when it is selected, otherwise, it should display "More ...
- 4 years ago
Anonymous,
Try this measure:
Barcode Selected Measure = IF ( NOT HASONEVALUE ( 'My Table'[Barcode] ), "More than one barcode selected", CONCATENATEX ( 'My Table', 'My Table'[Text message], ", " ) )-----
-----
DataInsights
4 years agoSuper User
Anonymous,
Try this measure:
Barcode Selected Measure =
IF (
NOT HASONEVALUE ( 'My Table'[Barcode] ), "More than one barcode selected",
CONCATENATEX ( 'My Table', 'My Table'[Text message], ", " )
)
-----
-----