Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here is my current SUMIF formula. How would I modify this to add the
selection of a date range from the same data columns? Example, start date of 2/1 and end date of 2/8. =SUMIF(Jan!$F$9:$F$55202,"groceries",Jan!$D$9:$D$5 5202) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The answer depends on which version of Excel you are using. For Excel 2007,
you can use Sumifs. For other versions, it's Sumproduct, as in: =Sumproduct(--(Jan!$F$9:$F$55202="groceries"),--(Jan!$G$9:$G$55202=Date(2010,2,1)),--(Jan!$G$9:$G$55202<=Date(2010,2,8)),Jan!$D$9:$D$55 202) As an aside, my bet is that using a Pivot Table would make your life a lot easier. Regards, Fred "Kane" wrote in message ... Here is my current SUMIF formula. How would I modify this to add the selection of a date range from the same data columns? Example, start date of 2/1 and end date of 2/8. =SUMIF(Jan!$F$9:$F$55202,"groceries",Jan!$D$9:$D$5 5202) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am using Office 2007. So the sumif is working great. I tried the pivot
tables first, but they were very complex to setup and I could not understand or change the format of the results. Is there a tutorial anywhere that can help? "Fred Smith" wrote: The answer depends on which version of Excel you are using. For Excel 2007, you can use Sumifs. For other versions, it's Sumproduct, as in: =Sumproduct(--(Jan!$F$9:$F$55202="groceries"),--(Jan!$G$9:$G$55202=Date(2010,2,1)),--(Jan!$G$9:$G$55202<=Date(2010,2,8)),Jan!$D$9:$D$55 202) As an aside, my bet is that using a Pivot Table would make your life a lot easier. Regards, Fred "Kane" wrote in message ... Here is my current SUMIF formula. How would I modify this to add the selection of a date range from the same data columns? Example, start date of 2/1 and end date of 2/8. =SUMIF(Jan!$F$9:$F$55202,"groceries",Jan!$D$9:$D$5 5202) . |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try: http://www.cpearson.com/excel/pivots.htm
Once you learn Pivot Tables, you never go back. Regards, Fred "Kane" wrote in message ... I am using Office 2007. So the sumif is working great. I tried the pivot tables first, but they were very complex to setup and I could not understand or change the format of the results. Is there a tutorial anywhere that can help? "Fred Smith" wrote: The answer depends on which version of Excel you are using. For Excel 2007, you can use Sumifs. For other versions, it's Sumproduct, as in: =Sumproduct(--(Jan!$F$9:$F$55202="groceries"),--(Jan!$G$9:$G$55202=Date(2010,2,1)),--(Jan!$G$9:$G$55202<=Date(2010,2,8)),Jan!$D$9:$D$55 202) As an aside, my bet is that using a Pivot Table would make your life a lot easier. Regards, Fred "Kane" wrote in message ... Here is my current SUMIF formula. How would I modify this to add the selection of a date range from the same data columns? Example, start date of 2/1 and end date of 2/8. =SUMIF(Jan!$F$9:$F$55202,"groceries",Jan!$D$9:$D$5 5202) . |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(RngF="groceries"),--(RngDate=DATE(2010,2,1)),--(RngDate<=DATE(2010,2,8)),RngD)
"Kane" wrote: Here is my current SUMIF formula. How would I modify this to add the selection of a date range from the same data columns? Example, start date of 2/1 and end date of 2/8. =SUMIF(Jan!$F$9:$F$55202,"groceries",Jan!$D$9:$D$5 5202) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What should formula look like to define date range on SUMIF | Excel Worksheet Functions | |||
Using a date range in a formula to pull info to the correct column | Excel Worksheet Functions | |||
Formula to take average from column range matching another | Excel Discussion (Misc queries) | |||
SUMIF within date range as a function of today()'s date | Excel Worksheet Functions | |||
I need a formula to find rows within a date range in one column? | Excel Worksheet Functions |