Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
NavinReddy
Creator II
Creator II

Cross Table

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

1 Solution

Accepted Solutions
Gysbert_Wassenaar

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));


talk is cheap, supply exceeds demand

View solution in original post

4 Replies
lironbaram
Partner - Master III
Partner - Master III

hi attach is what you asked for

Gysbert_Wassenaar

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));


talk is cheap, supply exceeds demand
jagan
Luminary Alumni
Luminary Alumni

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.

NavinReddy
Creator II
Creator II
Author

Thank you all