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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
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;