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: 
rcandeo
Creator III
Creator III

How can I do this join?

Hi, I have to join two fields value like this:

A = 1234

B = 0567

C = A&B

The result must be C = 12340567 and actually I´m receiving 1234567

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try reading your A and B fields in using text() function:

LOAD

     text(A) as A,

     text(B) as B,

     text(A) & text(B) as C,

...

View solution in original post

1 Reply
swuehl
MVP
MVP

Try reading your A and B fields in using text() function:

LOAD

     text(A) as A,

     text(B) as B,

     text(A) & text(B) as C,

...