Forum Discussion
RafalMonka
Helper I
4 years agoVisual 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 "; ").
AlexisOlson
Super User
4 years agoMeasures 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 "; ").