Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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

1 Solution

Accepted Solutions
tresesco
MVP
MVP

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

Load

      ItemId & '-' & BomId as NewField

View solution in original post

3 Replies
tresesco
MVP
MVP

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.