Sum Date issues

InventedTheMop

New Member
Joined
May 28, 2010
Messages
20
Hey, I'm trying to sumif the sales a salesman made on a specific day. However, the dates yielded from our database have specific times on the end. How can I get my sumif formula to ignore the times and only concentrate on the actual date?

Sample:
=SUMIFS($B$2:$B$1000,!$A$2:$A$1000,F1,$D$2:$D$1000,G1)

In the above sample:

column B represents each individual sale made in the day.

column A represents the name of the employee who made each individual sale.

column D represents the range of dates and times at which point the sale was made.

F1 represents a specific employee's name

G1 represents a specific date

Please help!!
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
It didn't like:
=SUMIFS($B$2:$B$1000,$A$2:$A$1000,F1,INT($D$2:$D$1000),G1)
so:
=SUMPRODUCT(($B$2:$B$1000)*($A$2:$A$1000=F1)*(INT($D$2:$D$1000)=G1))
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,351
Members
452,907
Latest member
Roland Deschain

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