Help with Sumifs formula involving dates

jeffreyp

New Member
Joined
Nov 21, 2024
Messages
7
Office Version
  1. 365
Platform
  1. Windows
I have two tabs in an Excel worksheet, one named "GL". That tab is a SQL feed from our GP Dynamics ERP that returns three columns:
Column A: Account
Column B: Date (Formatted in Date *3/14/2012 format)
Column C: Amount.

On the other tab where I am trying to bring in data from the GL tab, I have Begin Week dates in row 2 and End Week dates in row 3. Those dates are also Formatted in Date *3/14/2012 format
I am trying to create a formulas to bring in all amounts in the date range of 12/6/2014-12/12/2014 for account 10-30000. If I don't include dates in the formula I get the correct total for account 10-30000 for the entirety of my data set. It's when I start trying to use the dates in row 2 and row 3 that my formula returns 0 I am trying to put a formula on the Flash Report tab cell B9 that would sum up the total of GL account 10-3000 between the dates in cells B2 and B3. See Screenshots. I've googled multiple pages for help, some say I need to format the dates in a certain way and some don't. Can anyone help?
Capture.PNG
Capture2.PNG
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
The article Joe referred you to will have this but in summary, you have your cell reference inside the quotes which makes it just a text string instead of a cell reference. Try changing:
">=B2" to ">=" & B2
"<=B3" to "<=" & B3
 
Upvote 0

Forum statistics

Threads
1,224,750
Messages
6,180,740
Members
452,996
Latest member
nelsonsix66

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