Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

cross pivot table with fix total column and row

Hi,

I have cross pivot table with two dimension Vendor and Project Phase and one expression Amount and Overall column and row.

Is there option how to fix Overall column and row? So if i choose Vendor or Project Phase filter, Overall values will be fixed for all vendors and phases.

Example on picture.

Untitled.png

Thanks for help.

T.

1 Solution

Accepted Solutions
Not applicable
Author

Ok,

Try with this:

if(ColumnNo()=0, Sum(Aggr(Sum({< Project_Phase= >} Value), Vendor)), sum(Value))

Regards,

Ricardo

View solution in original post

4 Replies
Not applicable
Author

Try with this:

if(ColumnNo()=0, Sum({< Project_Phase= >} Value), sum(Value) )

Regards,

Ricardo

Not applicable
Author

Great, it seems that it is working, but how I can hide other phases which are now zero?

Untitled.png

Thanks.

T.

Not applicable
Author

Ok,

Try with this:

if(ColumnNo()=0, Sum(Aggr(Sum({< Project_Phase= >} Value), Vendor)), sum(Value))

Regards,

Ricardo

Not applicable
Author

Great, it is working perfectly.

Thanks.