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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
sculptorlv
Creator III
Creator III

Representation of dimensions

Hi!

I have the following chart in my qlik:

    

Manager5GALLPETBOU
Manger 1760.5665.52470.60
Manger 2589.9350.67334.20
Manger 3314.7432.93213.00
Manger 4236.1917.84150.03

Where, Manager, 5GALL, PET and BOU are dimensions.

I need for integration with other systems made anothor represenatation of this chart:

Header 1Header 2Header 3
Manger 1760.565GALL
Manger 165.52PET
Manger 1470.60BOU
Manger 2589.935GALL
Manger 250.67PET
Manger 2334.20BOU
Manger 3314.745GALL
Manger 332.93PET
Manger 3213.00BOU
Manger 4236.195GALL
Manger 417.84PET
Manger 4150.03BOU

..or somthing similar..

How can I do it?

Thank you in advance for you attention and help!

1 Solution

Accepted Solutions
Not applicable

the best would be cross table :

CrossTable([5GALL1], Data)

LOAD Manager,

    [5GALL],

    PET,

    BOU

FROM

(ooxml, embedded labels, table is Sheet1);

see attached qvw.

View solution in original post

7 Replies
Anil_Babu_Samineni

Try to post qvw and expected O/P

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

CrossTable(Attribute, Data)

LOAD Manager,

     [5GALL],

     PET,

     BOU

FROM

(ooxml, embedded labels, table is Sheet1);

Result:

Screenshot_1.jpg

Anonymous
Not applicable

Looks you need a CrossTable Load.

Henric explains this function well in his Blog Post, The Crosstable Load

sculptorlv
Creator III
Creator III
Author

Look like a solution I need,

can you please upload the qlik file, you have created?

Not applicable

create a pivot table in Qlikview using manager as dimension and sum(5GALL) and sum(PET) and sum(BOU) as expressions.

Not applicable

the best would be cross table :

CrossTable([5GALL1], Data)

LOAD Manager,

    [5GALL],

    PET,

    BOU

FROM

(ooxml, embedded labels, table is Sheet1);

see attached qvw.

sculptorlv
Creator III
Creator III
Author

Thank you ... this works too!