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: 
Not applicable

crosstable issue...

Hi guys,

I have a data which i need to transform it in to new format using crosstable.

date_timeTotalACTubelightComputer
8/8/2013 12:1567253012
8/9/2013 1:20128505424
8/10/2013 2:17202605587
8/11/2013 21:3097652210


Now i want to convert this data in below format,

date_timeTotalProductvalue
8/8/2013 12:1567AC25
8/8/2013 12:1567Tubelight30
8/8/2013 12:1567Computer12
8/9/2013 1:20128AC50
8/9/2013 1:20128Tubelight54
8/9/2013 1:20128Computer24
8/10/2013 2:17202AC60
8/10/2013 2:17202Tubelight55
8/10/2013 2:17202Computer87
8/11/2013 21:3097AC65
8/11/2013 21:3097Tubelight22
8/11/2013 21:3097Computer10


please guide.

thanks,
hitesh

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

ResultTable:

Crosstable(Product,value,2)

Load * from ...somewhere...;


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

ResultTable:

Crosstable(Product,value,2)

Load * from ...somewhere...;


talk is cheap, supply exceeds demand
Not applicable
Author

thanks a lot gysbert.