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: 
kushalthakral
Creator III
Creator III

Create a table in qlikview

Hi All

i want to create a table like below in qlikview

is it possible

ClassificationTargetActualVariance

A

1091
B15105
C201010
D18153

where classification is Expression label not dimensions

so need to show expressions one after another

Thanks

Kushal Thakral

2 Replies
its_anandrjs
Champion III
Champion III

Can you elaborate more with any samples

It it is table then you can do this in the load script

Load

Classification,

Target,

Actual,

Target - Actual =  Variance

From Location;

swuehl
MVP
MVP

I think you need at least one dimension here, but you can use a calculated dimension, like

=aggr(

if( sum(Sales) > 1000,'A','B')

,Customer)