Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
SaleDate EstShipDate
7/2/08 7/18/08 7/12/08 8/5/08 7/30/08 9/4/08 8/3/08 8/25/08 How do I combine the functions below so I can see how many orders were placed in July but will ship after July? I'm looking for a result of 2. =COUNTIF(saledate,"=07/01/2008")-COUNTIF(saledate,"07/31/2008") =COUNTIF(EstShipDate,"07/31/2008") THANKS!!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this formula:
=SUMPRODUCT(--(Sales=--"07/01/2008"),--(Sales<=--"07/31/2008"),--(Ship--"07/31/2008")) where Sales is your SalesDate range, and Ship is your ShipDate range. -- John C "KMC" wrote: SaleDate EstShipDate 7/2/08 7/18/08 7/12/08 8/5/08 7/30/08 9/4/08 8/3/08 8/25/08 How do I combine the functions below so I can see how many orders were placed in July but will ship after July? I'm looking for a result of 2. =COUNTIF(saledate,"=07/01/2008")-COUNTIF(saledate,"07/31/2008") =COUNTIF(EstShipDate,"07/31/2008") THANKS!!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can use a SUMPRODUCT function:
http://www.kan.org/tips/excel_sumproduct_advanced1.php I think it would look something like: =SUMPRODUCT(--(saledate=07/01/2008),--(EstShipDate07/31/2008)) I probably have the date format wrong, but this should count up your sales. If you have a sales figure, that would be a 3rd argument to total up sales within those ranges. -- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "KMC" wrote: SaleDate EstShipDate 7/2/08 7/18/08 7/12/08 8/5/08 7/30/08 9/4/08 8/3/08 8/25/08 How do I combine the functions below so I can see how many orders were placed in July but will ship after July? I'm looking for a result of 2. =COUNTIF(saledate,"=07/01/2008")-COUNTIF(saledate,"07/31/2008") =COUNTIF(EstShipDate,"07/31/2008") THANKS!!! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Forgot your upper date range. This works
=SUMPRODUCT(--(SaleDate=C11),--(SaleDate<=C12),--(EstShipDateC12)) C11 = 7/1/08 C12 = 7/31/08 -- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "KMC" wrote: SaleDate EstShipDate 7/2/08 7/18/08 7/12/08 8/5/08 7/30/08 9/4/08 8/3/08 8/25/08 How do I combine the functions below so I can see how many orders were placed in July but will ship after July? I'm looking for a result of 2. =COUNTIF(saledate,"=07/01/2008")-COUNTIF(saledate,"07/31/2008") =COUNTIF(EstShipDate,"07/31/2008") THANKS!!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Combining COUNTIF and AND functions | Excel Worksheet Functions | |||
combining countif with AND function | Excel Worksheet Functions | |||
How do I use COUNTIF if I am combining 2 columns? | Excel Worksheet Functions | |||
Combining COUNTIF and LEN | Excel Worksheet Functions | |||
combining countif formulas | Excel Worksheet Functions |