Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table chart like this:
TRX_ID | LPN_TYPE | LPN_NAME |
123 | Content | ABC |
123 | Transfer | DEF |
In the front-end (not in the script) I wish to create a table chart that will look like this:
TRX_ID | Content | Transfer |
123 | ABC | DEF |
I've tried doing calculated dimensions, ie:
=IF([LPN_TYPE] = 'Content', [LPN_NAME])
But this still leave me with two lines, albeit, the line for the lpn_type 'Transfer' has this column set to null.
Any help is much appreciated!
Why don't you create a pivot table where LPN_TYPE is your pivoted dimension and LPN_NAME is your expression?
Create a pivot table:
as line:
TRX_ID
as Column : LPN_TYPE
as a measure: concat(LPN_NAME,', ')
result
Because I need it to stay as a dimension and not a measure.
LP_NAME needs to stay as dimension you mean?