I am adding values together from 2 different sheets based on 1. date (in its own column) AND 2. if the description contains "AP" or "CD" (In another column) to populate on a summary tab.
I have tried the following formulas:
For my values containing AP or CD
1. =SUMPRODUCT(('GL Pivot'!B9:B405=Summary!A11)*('GL Pivot'!C9:C405="*AP*")*('GL Pivot'!C9:C405="*CD*")*('GLPivot'!E9:E405))
2. =INDEX('GL Pivot'!$B$4:$E$84,MATCH(A12,'GL Pivot'!B7:$B$84,0),4)+SUMIF('GL Pivot'!C:C,"*CD*",'GL Pivot'!E:E)
For my values containing 201 or 501
1. =SUMIF('Bank Pivot'!$A:$A,A22,'Bank Pivot'!$D:$D)+SUMIF('Bank Pivot'!$A:$A,$B$8,'Bank Pivot'!$D:$D)+SUMIF('BankPivot'!$A:$A,$C$8,'Bank Pivot'!$D:$D)
SUMIF is performing an "or" and not giving me all the data.
INDEX MATCH is returning the total number and not the amount based on criteria
SUMPRODUCT is returning ZERO and not the amount based on criteria
How can I get any of the formulas to total amounts based on a daily date and that also include certain text in the description column from a different tab onto my main summary tab per date?
I have tried the following formulas:
For my values containing AP or CD
1. =SUMPRODUCT(('GL Pivot'!B9:B405=Summary!A11)*('GL Pivot'!C9:C405="*AP*")*('GL Pivot'!C9:C405="*CD*")*('GLPivot'!E9:E405))
2. =INDEX('GL Pivot'!$B$4:$E$84,MATCH(A12,'GL Pivot'!B7:$B$84,0),4)+SUMIF('GL Pivot'!C:C,"*CD*",'GL Pivot'!E:E)
For my values containing 201 or 501
1. =SUMIF('Bank Pivot'!$A:$A,A22,'Bank Pivot'!$D:$D)+SUMIF('Bank Pivot'!$A:$A,$B$8,'Bank Pivot'!$D:$D)+SUMIF('BankPivot'!$A:$A,$C$8,'Bank Pivot'!$D:$D)
SUMIF is performing an "or" and not giving me all the data.
INDEX MATCH is returning the total number and not the amount based on criteria
SUMPRODUCT is returning ZERO and not the amount based on criteria
How can I get any of the formulas to total amounts based on a daily date and that also include certain text in the description column from a different tab onto my main summary tab per date?