Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

How to get a Text Card to Display 2 Selected Values at Once?

  • Anonymous,

     

    Try this measure. The new card visual allows you to left-align text.

     

    Measure - ISP = 
    IF (
        ISFILTERED ( '4 - ISP'[Code or Description] ),
        CONCATENATEX ( VALUES ( '4 - ISP'[Code or Description] ), '4 - ISP'[Code or Description] & UNICHAR ( 10 ) ),
        "(No Alarm Selected)"
    )

     

     

     

1 Reply

  • Anonymous,

     

    Try this measure. The new card visual allows you to left-align text.

     

    Measure - ISP = 
    IF (
        ISFILTERED ( '4 - ISP'[Code or Description] ),
        CONCATENATEX ( VALUES ( '4 - ISP'[Code or Description] ), '4 - ISP'[Code or Description] & UNICHAR ( 10 ) ),
        "(No Alarm Selected)"
    )