Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
dhananjay_capge
Partner - Contributor III
Partner - Contributor III

Concatenate field value with prefix * and single quotes

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

Labels (1)
2 Replies
Taoufiq_Zarra

Maye be :

=concat(chr(39)&'*'&F1&chr(39),',')

 

Capture.PNG

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
NitinK7
Specialist
Specialist

Hi,

try the following Expression

=Concat(chr(39) & '*' & F1 & chr (39), ',')

KPI.JPG

Thanks,

Nitin.