Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
Please help in loading the data into qlikview with the below format
X | Y | Z | ||||||||||||
A | B | C | D | E | A | B | C | D | E | A | B | C | D | E |
Here x is merged column for columns A, B, C, D, E
In the same way Y and Z also have columns A, B, C, D, E. Columns are same but data is different.
Thanks in advance
Regards
Srinivas
Hi Sri,
If I understand your requeriment you should do something like this:
FACT:
LOAD
A&B&C&D&E as X
FROM
[..\..\EXCEL.xlsx]
(biff, embedded labels, table is Sheet1$)
where condition_of_merge1;
CONCATENATE(FACT)
LOAD
A&B&C&D&E as Y
FROM
[..\..\EXCEL.xlsx]
(biff, embedded labels, table is Sheet1$)
where condition_of_merge2;
CONCATENATE(FACT)
LOAD
A&B&C&D&E as Z
FROM
[..\..\EXCEL.xlsx]
(biff, embedded labels, table is Sheet1$)
where condition_of_merge3;
Hope it helps.
Cheers,
Andrés
please post an Excel sample.
regards
Marco
check this thread for the solution :
Hi ,
Post your file with same headers and sample data.will help.
-hirish