Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Planning Data from Excel


Dear all,

we have a Planning Sheet in Excel with following format:

                    Jan     Feb     Mar     Apr     May     Jun    

Produkt A     10     12          14       14       13       15    

Produkt B     4        3              3        3          5       6

Do someone has an idee how to implement this (the excel sheet has more than 4000 lines) in Qlikview?

Best regards,

Armin

1 Solution

Accepted Solutions
salto
Specialist II
Specialist II

You can read it as a crosstable:

CrossTable(Jan, Data)

LOAD F1,

     Jan,

     Feb,

     Mar,

     Apr,

     May,

     Jun

FROM

D:\Planning.xlsx

(ooxml, embedded labels, table is Sheet1);

View solution in original post

3 Replies
salto
Specialist II
Specialist II

You can read it as a crosstable:

CrossTable(Jan, Data)

LOAD F1,

     Jan,

     Feb,

     Mar,

     Apr,

     May,

     Jun

FROM

D:\Planning.xlsx

(ooxml, embedded labels, table is Sheet1);

Not applicable
Author

As Salto points out you can use the crosstable wizard. It's part of the Table files wizard in the script editor. Click next and select "Enable transformation step" then the crosstable button on the top right. Your Produkt field should be a "qualifier field", Type somthing like PlanningMonth as "attribute field" and maybe Amount/Quantity or what ever is suitable for the numeric values as "Data Field".

Good Luck

Not applicable
Author

Great - this works! Many thanks!

Armin