Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
mgavidia
Creator
Creator

Removing totals from date columns on pivot table

Hello everyone,

I have the pivot table below and I need to remove the dates from the Total row for the date columns.

The Expressions Total Mode is already setup as No Totals but it seems that is ignored on pivot tables.

I definitely need the dates in the chart. Is there a way to this without getting rid of the date columns?

(I already have the same info in a straight table but the users need to be able to pivot the data on those 3 dimensions)

Thank you for any advice you can give me.

Miguel Gavidia

1 Solution

Accepted Solutions
sunny_talwar

May be use Dimensionality() function to populate Date for only the rows:

If(Dimensionality() = 3, Expression4InquiryDate)

Similarliy for the RentedDaye

If(Dimensionality() = 3, Expression4RentedDate)

View solution in original post

2 Replies
sunny_talwar

May be use Dimensionality() function to populate Date for only the rows:

If(Dimensionality() = 3, Expression4InquiryDate)

Similarliy for the RentedDaye

If(Dimensionality() = 3, Expression4RentedDate)

mgavidia
Creator
Creator
Author

Sunny,

That tip did the trick. Thank you very much!

Miguel Gavidia