Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Could some one help to Do this,
Cross table how to do this in Qlikview
Plz find Excel Data
Im Using Personal Edition
Thanks in Advace
Rohit
Since he's using QV Personal Edition:
LOAD date(SALES_DATE) as SALES_DATE,
SALES_PERSON,
REGION,
SALES
FROM Sales.xlsx
(ooxml, embedded labels, table is Sheet1, filters(
Transpose()
))
WHERE(IsNum(SALES_DATE));
hi attach is what you asked for
Since he's using QV Personal Edition:
LOAD date(SALES_DATE) as SALES_DATE,
SALES_PERSON,
REGION,
SALES
FROM Sales.xlsx
(ooxml, embedded labels, table is Sheet1, filters(
Transpose()
))
WHERE(IsNum(SALES_DATE));
Hi Rohit,
Use below script to transpose the data
Data:
LOAD SALES_DATE,
SALES_PERSON,
REGION,
SALES
FROM
(ooxml, embedded labels, table is Sheet1, filters(
Remove(Col, Pos(Top, 2)),
Transpose()
));
Hope it helps you.
Regards,
Jagan.
Thank you all