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

Announcements
Qlik Named a 7-Time Gartner® Magic Quadrant™ Leader: See the 2026 Report
cancel
Showing results for 
Search instead for 
Did you mean: 
akpofureenughwu
Creator III
Creator III

Actual vs Plan

Good day everyone..

I have an excel sheet which table contain data variablefor actual and plan.

I would love the actual to be in bar chart and plan in line chart/

How can I do  this?

S/NFieldJanuaryFebruary
1

Lifting (actual)

1234
2Lifting (plan)6060
Labels (1)
1 Reply
m_woolf
Master II
Master II

In script:

if(index(Field,'(actual'))>0,'Actual',

    if(index(Field,'(plan'))>0,'Plan')) as Type.

Then use Type as Dimension for your chart.