Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
jsingh71
Partner - Specialist
Partner - Specialist

Proper format.

Hi All,

I have one sales table in following format:

SALES_DATEDate of sales12/27/201112/27/201112/27/201112/27/201112/27/20113/25/20123/25/20123/25/2012
SALES_PERSONEmployee's last nameTHOMPSONLEEBROWNLEEGOUNOTTHOMPSONTHOMPSONLEE
REGIONRegion of salesOntario-SouthOntario-SouthQuebecManitobaQuebecOntario-SouthQuebecOntario-South
SALESNumber of sales13121312

I want to load data in qlikview in below format

Date of salesEmployee's last nameRegion of salesNumber of sales
12/27/2011THOMPSONOntario-South1
12/27/2011LEEOntario-South3
12/27/2011BROWNQuebec1

How can I achieve this? I tried cross table load but didn't got the proper result. Please help

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Test:

LOAD SALES_DATE,

    SALES_PERSON,

    REGION,

    SALES

FROM

(ooxml, embedded labels, table is [Default ], filters(

Transpose()

))

WHERE(REGION <> 'Region of sales');

Regards,

Jagan.

View solution in original post

2 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try like this

Test:

LOAD SALES_DATE,

    SALES_PERSON,

    REGION,

    SALES

FROM

(ooxml, embedded labels, table is [Default ], filters(

Transpose()

))

WHERE(REGION <> 'Region of sales');

Regards,

Jagan.

jsingh71
Partner - Specialist
Partner - Specialist
Author

Hi Jagan,

Thank you very much for your reply.Its working.

Can you please explain in brief what you did.

Thanks.