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

How to make a special qlikview table

I have source data as below image (A) and I would like to turn the source data into qlikview format as below image (B).

Any idea how make the qlikview table into that format (B)?

Thanks

Special table format1.jpg

1 Reply
lironbaram
Partner - Master III
Partner - Master III

hi

you'll need to load the table in two steps

something like

Data:

Crosstable(Type,Amount,2)

Load Product,

         ProductCode,

          Unit,

          Value

from SourceTable;

join(Data)

Crosstable(Type,Budget,2)

Load Product,

         ProductCode,

          BudgetUnit,

         BudgetValue

from SourceTable;