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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

SUM IFS in Pivot Table

Hi,

the below formula does not sum the Or 'Updated transaction',

I need both New and Updated transactions to be summed, right now only the New transactions part work.

Any ideas why?

SUM(IF([ILM RESPONSIBLE]='YES',IF([TRANSACTION STATUS]='New transaction' Or 'Updated transaction', AMOUNT)))


1 Solution

Accepted Solutions
m_woolf
Master II
Master II

Try:


SUM(IF([ILM RESPONSIBLE]='YES',IF([TRANSACTION STATUS]='New transaction' Or ([TRANSACTION STATUS]='Updated transaction', AMOUNT)))

View solution in original post

2 Replies
m_woolf
Master II
Master II

Try:


SUM(IF([ILM RESPONSIBLE]='YES',IF([TRANSACTION STATUS]='New transaction' Or ([TRANSACTION STATUS]='Updated transaction', AMOUNT)))

Not applicable
Author

thanks!