Forum Discussion

RafalMonka's avatar
RafalMonka
Helper I
4 years ago
Solved

Visual to display dynamic table from a measure

Hi all, we have a business scenario that requires a special measure. This measure is returning a table (in fact the result from UNION command). We're a looking for a way to display records (rows) fr...
  • AlexisOlson's avatar
    4 years ago

    Measures cannot return tables but there's likely some kind of workaround possible. What should the result look like?

     

    If it's just a single column of values, then you could use

     CONCATENATEX( <Table>, <Expression>, UNICHAR(10) )

    where UNICHAR(10) is a line break (instead of "; ").