Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a worksheet in which I am tring to sum the data based upon a code
range, a date range and cost range. However when I enter this formula it sums the data from blank cells into the cell i wish to sum all the costs for January. =SUMPRODUCT(--($B$2:$B$268=$U277),--(MONTH($D$2:$D$268)=8),($K$2:$K$268)) Is there any way around this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I can't make that formula misbehave, it looks fine to me can you give the precise circumstances under which you get an error. Mike "Phil_S" wrote: I have a worksheet in which I am tring to sum the data based upon a code range, a date range and cost range. However when I enter this formula it sums the data from blank cells into the cell i wish to sum all the costs for January. =SUMPRODUCT(--($B$2:$B$268=$U277),--(MONTH($D$2:$D$268)=8),($K$2:$K$268)) Is there any way around this? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for the reponse Mike.
I have... CODE ORDER DATE COST CS01 7-Jan-08 £200.00 MT03 14-Jan-08 £4000.00 MT03 (blank) £500.00 This is a shortened example The formula is fine but my problem is when a cell in the date column is blank it assumes that it is the 00-Jan-00 and totals up the data in my January totals Table. I would like it to ignore the blank cells. Is this Possible? "Mike H" wrote: Hi, I can't make that formula misbehave, it looks fine to me can you give the precise circumstances under which you get an error. Mike "Phil_S" wrote: I have a worksheet in which I am tring to sum the data based upon a code range, a date range and cost range. However when I enter this formula it sums the data from blank cells into the cell i wish to sum all the costs for January. =SUMPRODUCT(--($B$2:$B$268=$U277),--(MONTH($D$2:$D$268)=8),($K$2:$K$268)) Is there any way around this? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Check to see if there's something numeric in that D range:
=SUMPRODUCT(--($B$2:$B$268=$U277), --(isnumber($d$2:$d$268), --(MONTH($D$2:$D$268)=1), ($K$2:$K$268)) Phil_S wrote: I have a worksheet in which I am tring to sum the data based upon a code range, a date range and cost range. However when I enter this formula it sums the data from blank cells into the cell i wish to sum all the costs for January. =SUMPRODUCT(--($B$2:$B$268=$U277),--(MONTH($D$2:$D$268)=8),($K$2:$K$268)) Is there any way around this? -- Dave Peterson |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could just add one more part tp your formula:
=SUMPRODUCT(--($B$2:$B$268=$U277),--(MONTH($D$2:$D$268)=8),--($D$2:$d$268<""),($K$2:$K$268)) -- John C "Phil_S" wrote: Thanks for the reponse Mike. I have... CODE ORDER DATE COST CS01 7-Jan-08 £200.00 MT03 14-Jan-08 £4000.00 MT03 (blank) £500.00 This is a shortened example The formula is fine but my problem is when a cell in the date column is blank it assumes that it is the 00-Jan-00 and totals up the data in my January totals Table. I would like it to ignore the blank cells. Is this Possible? "Mike H" wrote: Hi, I can't make that formula misbehave, it looks fine to me can you give the precise circumstances under which you get an error. Mike "Phil_S" wrote: I have a worksheet in which I am tring to sum the data based upon a code range, a date range and cost range. However when I enter this formula it sums the data from blank cells into the cell i wish to sum all the costs for January. =SUMPRODUCT(--($B$2:$B$268=$U277),--(MONTH($D$2:$D$268)=8),($K$2:$K$268)) Is there any way around this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Ignore Blank or 0 cells | Excel Worksheet Functions | |||
Ignore blank cells when calculating date for If, Then function | Excel Worksheet Functions | |||
SUMPRODUCT - Ignore blank rows | Excel Worksheet Functions | |||
ignore blank cells | Excel Discussion (Misc queries) | |||
How to ignore blank cells | Charts and Charting in Excel |