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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

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
Champion III
Champion III

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,

...