Forum Discussion
TGG2000
Jul 08, 2022Copper Contributor
Formula Question concerning Text Cells
Hello,
In the attached screenshot, I want to know if there is a formula that will allow me to get the sum for just the amounts that coincide with the text Credit card on file and then the sum for the amounts that coincide with the text Check? Instead of the way I do it now by selecting each cell individually, I appreciate any help you can provide.
2 Replies
You can use
=SUMIF(C2:C100,"Credit card on file",B2:B100)
and
=SUMIF(C2:C100,"Check",B2:B100)
Adjust the ranges as needed.
Alternatively, create a pivot table based on the data, and add the method field to the Rows area and amount to the Values area.
- TGG2000Copper ContributorHans, I had part of the formula correct but the ranges were off. Thank you!