SUMIF Formula Using Multiple Criteria

sheetsnewbie

New Member
Joined
Mar 19, 2024
Messages
1
In Google Sheets, I'm trying to do the following:

1710863822048.png


If the checkbox in the "Paid?" column (F) is checked, then it will check the date in column G and verify that it matches L2. If they match, then it will pull the amount in C2 and place it into L3. Then as I continue down the spreadsheet, it will continue to add any amounts from column C IF the date in column G matches the date in L2.

The only formula I know to use right now is the following:
=SUMIF(F2:F45,TRUE,C2:C45)

And that will pull the amount in column C if the checkbox is checked. But how do I add in that ALSO the date in column G matches the date in L2?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Change your formula to this :
Excel Formula:
=SUMIF(G:G,L2,C:C)
Where if the date on L2 matches the Date in Column It will add all of the values in column C
 
Upvote 0
If you want to test for column F to be true you try this
Excel Formula:
=SUMIFS(C:C,E:E,L2,F:F,TRUE)
Please note, I don not work with Google Sheets, I am not certain it has the same functionality Excel has.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top