Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Sonalbjr
Contributor
Contributor

Qlikview

I have 2 columns and I have to combine the strings of both the columns via writing a script in the script editor.

For eg. Column 1 = 45

Column 2 = 67

How to combine them to form 4567 in Qlikview?

 

1 Reply
JuanGerardo
Partner - Specialist
Partner - Specialist

Hi @Sonalbjr, why don't you concatenate them as strings?

[Column 1] & [Column 2] AS MyNewColumn

You can also use Num() function if you need any format for the numbers when converting to text, for example:

Num([Column 1], '000') & Num([Column 2], '000')

JG