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: 
irmantas
Contributor III
Contributor III

How join two fields in load

Hello,

I have load script:

FOR EACH vSheet IN 'C1','C2','C3','C4'

LOAD Data as GamData,

     ItemId,

     BomId,

     Name,

     QTY

FROM

(ooxml, embedded labels, table is $(vSheet));

NEXT 

I need field = ItemId+'-'+BomId

Exmpl: ItemId is PA-16895222542

BomId is 55658

I need new field with mean  PA-16895222542-55658

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Concatenation operator in Qlik is '&'. try like:

Load

      ItemId & '-' & BomId as NewField

View solution in original post

3 Replies
tresB
Champion III
Champion III

Concatenation operator in Qlik is '&'. try like:

Load

      ItemId & '-' & BomId as NewField

Anonymous
Not applicable

ItemId&'-'&sBomId as ID

irmantas
Contributor III
Contributor III
Author

Thank you all.