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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
n1ef5ng1
Creator
Creator

Static Column in KPI

Hi guys, I am currently working on a KPI report

basically the table structure will be like

Revenue     Target     Jan     Feb     March .... Dec     YTD

I am able to generate data for month and revenue

however, is there any where that I can fit in the target column that is suppose to be key in manually without duplication due to month as my dimension

Basically my dimension consist of Months and Value List for Revenue

Expression is just the value list

Any help is appreciated

5 Replies
Not applicable

use crosstable.

Crosstable(month,revenue)

load * from table1;

Not applicable

Crosstable(month,Revenue)

load

Target,

Revenue,

jan, feb,mar, apr,....

from table;

n1ef5ng1
Creator
Creator
Author

have to edit the script? possible to work on dimension or expression?

n1ef5ng1
Creator
Creator
Author

my revenue column is an valuelist input

Not applicable

you have to write it in edit script.

then use month as dimension and  Revenue  in expression of your chart or table

Crosstable(month,Revenue)

load

Target,

jan,

feb,

mar,

apr,....

from table;