Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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!