Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi there,
let's say I have a table like this
F1
A
B
C
need a expression in KPI box to show this result '*A','*B','*C' how to do this in QlikSense ?
Thanks in Advance.
DJ
Maye be :
=concat(chr(39)&'*'&F1&chr(39),',')
Hi,
try the following Expression
=Concat(chr(39) & '*' & F1 & chr (39), ',')
Thanks,
Nitin.