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: 
jmonroe918
Creator II
Creator II

Two Lines on One Chart

Attached is a qvw where I have two separate line charts showing:

Number of Closed Issues

Number of Opened Issues

Is it possible to get them both on the same chart?

Thanks

Jeff

4 Replies
MarcoWedel

Hi,

maybe helpful:

Canonical Date

regards

Marco

HirisH_V7
Master
Master

Hi Jeff,

Here You can create a applymap for your dates and make them into single field such that mapping with respect to Dimension and Expression occurs and thus will have View like Dual chart.

Regards,

hirish

HirisH
ecolomer
Master II
Master II

Is that??

P57.png

MarcoWedel

Hi,

maybe one solution could be also:

QlikCommunity_Thread_188950_Pic1.JPG

QlikCommunity_Thread_188950_Pic2.JPG

QlikCommunity_Thread_188950_Pic3.JPG

QlikCommunity_Thread_188950_Pic4.JPG

adding these lines to your script:

tabYrWk:

CrossTable(TypeTemp, [Yr/Wk])

LOAD [Issue Number],

     [Yr/Wk Closed],

     [Yr/Wk Originated]

Resident Issues;

Left Join (tabYrWk)

LOAD Distinct

  TypeTemp,

  SubField(TypeTemp,' ',2) as Type

Resident tabYrWk;

DROP Field TypeTemp;

hope this helps

regards

Marco