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

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!