Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I have a simple scorecard that Ive built with available points in column B and a score in column C. Sometimes not all the column C's are filled out due to the process wasn't observe. I only want to sum up total points available in column B if the adjacent cell in column C has a numeric value. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe something like
=SUMPRODUCT(--(LEN(C1:C15)0),B1:B15) Change the ranges in columns C & B to match your data. You can't include whole columns when using SUMPRODUCT. Hope this helps, Hutch "arch0072" wrote: Hi, I have a simple scorecard that Ive built with available points in column B and a score in column C. Sometimes not all the column C's are filled out due to the process wasn't observe. I only want to sum up total points available in column B if the adjacent cell in column C has a numeric value. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--ISNUMBER(C1:C100),B1:B100)
"arch0072" wrote: Hi, I have a simple scorecard that Ive built with available points in column B and a score in column C. Sometimes not all the column C's are filled out due to the process wasn't observe. I only want to sum up total points available in column B if the adjacent cell in column C has a numeric value. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
thanks that worked, i have a new issue now. i have other cells doing a sum
of the number in the defined cell below and they are coming up #DIV/O! now... if there a way to make them appear blank if the sumproduct is 0? "Teethless mama" wrote: =SUMPRODUCT(--ISNUMBER(C1:C100),B1:B100) "arch0072" wrote: Hi, I have a simple scorecard that Ive built with available points in column B and a score in column C. Sometimes not all the column C's are filled out due to the process wasn't observe. I only want to sum up total points available in column B if the adjacent cell in column C has a numeric value. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 2, 1:18 pm, arch0072
wrote: thanks that worked, i have a new issue now. i have other cells doing a sum of the number in the defined cell below and they are coming up #DIV/O! now... if there a way to make them appear blank if the sumproduct is 0? Sounds like you have a division, not a sum. Here's a basic formula format: =IF(cell=0,"",SUM) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I stop text displaying in blank adjacent cells? | Excel Discussion (Misc queries) | |||
Using CountIf with non-adjacent cells in same column | Excel Discussion (Misc queries) | |||
Counting cells with blank adjacent cell | Excel Worksheet Functions | |||
summing values from adjacent column with refrence from adjacent column | Excel Discussion (Misc queries) | |||
Sum column if multiple criteria are met in adjacent cells | Excel Worksheet Functions |