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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Nolgath
Creator
Creator

Accumulation in Crosstable

Hello, I have a cross table like this:

//----------------------------------------------------------------------

Transposed:
crosstable (Fields, Value, 1)
Load
Trim(Month) as Month,
Trim(direct_sales_units) as "Direct Sales (Units)",
Trim(online_sales_units) as "Online Sales (Units)",
Trim(total_units) as "Total Units"

Resident [form_data_qvd];

//----------------------------------------------------------------------

 

I need to have a accumulation of each field according to Month. Month field has all months in caps like 'JULY', 'JUNE' etc.. I need the accumulation to be from 'JULY' to 'JUNE' as this is the fiscal year.

 

When I try to rangesum(above() in expression on the pivot table itself it gives me strange numbers.. how can I achieve a table like that but with accumulations instead?

Labels (1)
1 Solution

Accepted Solutions
brunobertels
Master
Master

Hi 

try this :

rangesum(before(YourMesureHere,0,columnno()))

 

regards 

View solution in original post

2 Replies
brunobertels
Master
Master

Hi 

try this :

rangesum(before(YourMesureHere,0,columnno()))

 

regards 

Nolgath
Creator
Creator
Author

Hello brunobertels,

Tried that on my pivot table measure, works perfectly, thank you very much!

 

Regards