I need to create a 4th column in either table as a sum of columns 1,2 and 3. How can I do it?.
LOAD column1,
KeyColumn
FROM
[C:\Qlik\file1.xlsx]
(ooxml, embedded labels, table is sheet1);
LOAD column2,
column3,
KeyColumn
FROM
[C:\Qlik\file1.xlsx]
(ooxml, embedded labels, table is sheet2);
I changed your LOAD script into a INLINE version, so it is not depending on external files and other users can copy and paste it easy.
My LOAD script:
I use the outer join to be sure that all values for KeyColumn are in the resulting table.
In the dashboard I load all available columns and get:
Next step is to iterate over the existing values and add the three columns and store them in column4.
Attention. This
will not work!
After adding the new column to the dashboard you get:
I hope thats what you were asking for.
Update after comments.
In your case
should work.