Forum Discussion
Cass_M
May 08, 2019Copper Contributor
IF Function - May be a diff function
Hi all,
I run a sports canteen and I am looking to have 1 sheet for all receipts. My query is:
Col A Suppliers Names (Woolworths, Coles etc...)
Col B Receipt Amount
I want to have a formula on my Summary sheet where all "Woolworths" receipts will total, same goes with all other Suppliers. I can do this manually, but I was hoping there was a way I could do maybe an IF(Cell Range="woolworths" then the 'receipt amount' would tally)
Any advice would be great, thank you
- Sure, SUMIFS sums up a range of cells based on another range of cells
So you are summing Column B based on the values in column A = "woolworths"
8 Replies
- =SUMIFS(B:B,A:A,"woolworths")
- Cass_MCopper Contributor
- Sure, SUMIFS sums up a range of cells based on another range of cells
So you are summing Column B based on the values in column A = "woolworths"