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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

adding an extra calculated dimension

Hello All,

I have a problem with a table like this.

 

MonthPersonCost
1A10
1B10
2A5
2B15

I try to create a pivot table like this ;

I can do it with excel by creating calculated item in PivotTable. Is there anyway for this in Qlikview PivotTable

1.PNG

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

You need to create an extra table for that:

NewMonths:

LOAD * INLINE [

NewMonth, Month

1,1

2,2

January, 1

Februari, 1

Februari, 2

];

Then use NewMonth as dimension instead of Month.


talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Use Month as Person as dimensions in the pivot table. And enable the Indent Mode and Use Only First Dimension Label options on the Style tab.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks for quick reply, but my problem is different.

As you see ; I add extra calculated dimensions Month Names.

January  ; has only January's values.

February ; has both  (January & February) values.

March ; (Sum of March & earlier month records)

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

You need to create an extra table for that:

NewMonths:

LOAD * INLINE [

NewMonth, Month

1,1

2,2

January, 1

Februari, 1

Februari, 2

];

Then use NewMonth as dimension instead of Month.


talk is cheap, supply exceeds demand