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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How do I create a new expression with 2 collums and add a "-" in the middle? I tried to concatenate but I need to add a minus sign in the middle.

How do I create a new expression with 2 collums and add a "-" in the middle? I tried to concatenate but I need to add a minus sign in the middle.

2 Replies
Colin-Albert
Partner - Champion
Partner - Champion

In your load script you can use

     FieldA & '-' & FieldB as NewField

or just concatenate the data in your chart

     FieldA & '-' & FieldB

Not applicable
Author

appreciate my friend