Skip to main content
Announcements
YOUR OPINION MATTERS! Please take the Qlik Experience survey you received via email. Survey ends June 14.
cancel
Showing results for 
Search instead for 
Did you mean: 
infosense_devel
Creator II
Creator II

Concatenation of Filed with text.

Hello,

    

i have scenario where i have to concatenate filed with some text.

1.png

i have "region" a filed and i am trying like below,

=REGION&' (Including Consumer)'

this is working fine but this is generating  one more extra line as below.

2.png

thanks in advance.

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Modify your expression like this:

=if(len(REGION) > 0, REGION & ' (Including Consumer)')

-Rob

http://masterssummit.com

http://qlikviewcookbook.com

sunny_talwar

May be try this

=If(Len(Trim(REGION)) > 0, REGION & ' (Including Consumer)')