G Guest Apr 7, 2005 #1 what is the proper way of entering a formula if you want to sum colum a if colum b is >03-01-05 but <04-01-05
what is the proper way of entering a formula if you want to sum colum a if colum b is >03-01-05 but <04-01-05
R Ragdyer Apr 7, 2005 #2 One way: =SUMPRODUCT((B1:B100>DATEVALUE("03/01/05"))*(B1:B100<DATEVALUE("04/01/05"))* A1:A100) You do realize, that your parameters will *not* sum the entire month of March. What you posted (>03-01-05), will exclude the first day of the month.
One way: =SUMPRODUCT((B1:B100>DATEVALUE("03/01/05"))*(B1:B100<DATEVALUE("04/01/05"))* A1:A100) You do realize, that your parameters will *not* sum the entire month of March. What you posted (>03-01-05), will exclude the first day of the month.