Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you help please, I need a formula to add up the values in a row, but only
if the row has a complete set of values e.g for a row containing the following values I would expect the following answers 20 22 20 25 21 = 108 19 20 21 20 = "blank" |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use the IF condition
=IF(COUNT(A1:E1)=5,SUM(A1:E1),"Blank") If this post helps click Yes --------------- Jacob Skaria "Rob" wrote: Can you help please, I need a formula to add up the values in a row, but only if the row has a complete set of values e.g for a row containing the following values I would expect the following answers 20 22 20 25 21 = 108 19 20 21 20 = "blank" |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Revised one...You dont need to specify the no of columns
=IF(COUNT(A16:E16)=COLUMNS(A16:E16),SUM(A16:E16)," Blank") If this post helps click Yes --------------- Jacob Skaria "Rob" wrote: Can you help please, I need a formula to add up the values in a row, but only if the row has a complete set of values e.g for a row containing the following values I would expect the following answers 20 22 20 25 21 = 108 19 20 21 20 = "blank" |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Worked a treat thank you
"Jacob Skaria" wrote: Revised one...You dont need to specify the no of columns =IF(COUNT(A16:E16)=COLUMNS(A16:E16),SUM(A16:E16)," Blank") If this post helps click Yes --------------- Jacob Skaria "Rob" wrote: Can you help please, I need a formula to add up the values in a row, but only if the row has a complete set of values e.g for a row containing the following values I would expect the following answers 20 22 20 25 21 = 108 19 20 21 20 = "blank" |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comparing data in mult rows then summing unique values | Excel Discussion (Misc queries) | |||
Summing rows based on other column values | Excel Worksheet Functions | |||
Summing values, x rows deep, depending on a criterion | Excel Worksheet Functions | |||
Finding Most Recent Values in Col1 -- Summing Matching Values | Excel Discussion (Misc queries) | |||
summing values in one row based on values in another row | Excel Worksheet Functions |