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

expressions as timeline

Hi guys,

Unfortunately the data im using is derived from a excel pivot like data, example:

Product               Year 1 total          Year 2 total     Year 3 total

A                      

B

B

I would need to make a timeline chart out of the above, so that the Years would be on the x-axis. Can anyone help..Automatically the years are presented in the y-axis.

Thanks.

1 Solution

Accepted Solutions
SunilChauhan
Champion II
Champion II

tab1:

cross table(columns,value,1)

load

Product  ,            

Year 1 total       ,   Year 2 total    , Year 3 total

from path.

Load *,

left(columns,4) as Year

resident tab1;

drop table path1;

Sunil Chauhan

View solution in original post

1 Reply
SunilChauhan
Champion II
Champion II

tab1:

cross table(columns,value,1)

load

Product  ,            

Year 1 total       ,   Year 2 total    , Year 3 total

from path.

Load *,

left(columns,4) as Year

resident tab1;

drop table path1;

Sunil Chauhan