Forum Discussion
RafalMonka
4 years agoHelper I
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...
- 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 "; ").
RafalMonka
4 years agoHelper I
Hi, long time no see. Thank you for your answer.
We had to take a break from this matter due to more urgent topics but finally we have developed custom visual (a table). This visual takes measure as an input and the measure returns CSV data. Custom table is rendered from csv data.