Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hello from Steved
I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
#2
![]() |
|||
|
|||
![]()
Try...
=SUM(C3,C6,C9,C12,C15,C18,C21,C24,C27) Hope this helps! In article , Steved wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
#3
![]() |
|||
|
|||
![]()
Hello from Steved
Below is my attempt but is returning a #NAME! Value. =SUM(IF(MOD(COL($C$3:$C$29)-1,$C$3)=0,$C$3:$C$29,0)) Thankyou. "Steved" wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
#4
![]() |
|||
|
|||
![]() If those cells do not return a number, you can not add them up or excel will give you an error message like #VALUE! If you must sum them, do this: =SUMIF(A:A,"0")+SUMIF(A:A,"<=0") Steved Wrote: Hello from Steved Below is my attempt but is returning a #NAME! Value. =SUM(IF(MOD(COL($C$3:$C$29)-1,$C$3)=0,$C$3:$C$29,0)) Thankyou. "Steved" wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. -- Morrigan ------------------------------------------------------------------------ Morrigan's Profile: http://www.excelforum.com/member.php...fo&userid=7094 View this thread: http://www.excelforum.com/showthread...hreadid=388131 |
#5
![]() |
|||
|
|||
![]()
Thanks Domenic
"Domenic" wrote: Try... =SUM(C3,C6,C9,C12,C15,C18,C21,C24,C27) Hope this helps! In article , Steved wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
#6
![]() |
|||
|
|||
![]()
There is no COL function in my version of XL so i assume that is why you get
the #NAME! error Try: =SUM((IF(MOD(ROW(C1:C29),3)=0,C1:C29))) array entered or =SUMPRODUCT(((MOD(ROW(C1:C29),3)=0)*(C1:C29))) normally entered -- HTH Sandy Replace@mailinator with @tiscali.co.uk "Steved" wrote in message ... Hello from Steved Below is my attempt but is returning a #NAME! Value. =SUM(IF(MOD(COL($C$3:$C$29)-1,$C$3)=0,$C$3:$C$29,0)) Thankyou. "Steved" wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
#7
![]() |
|||
|
|||
![]()
My "guess" is that if "Sum" worked, but =C3+C6+... did not work, then one of
your cells has text, and is not a number. As technique, pull up the "Formula Auditing" toolbar, select your cell with the value error, and click on the "Trace Error" button. It should point you to the text cell that is causing the error. HTH :) -- Dana DeLouis Win XP & Office 2003 "Steved" wrote in message ... Thanks Domenic "Domenic" wrote: Try... =SUM(C3,C6,C9,C12,C15,C18,C21,C24,C27) Hope this helps! In article , Steved wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
#8
![]() |
|||
|
|||
![]()
Hello Sandy from Steved
Thankyou. "Sandy Mann" wrote: There is no COL function in my version of XL so i assume that is why you get the #NAME! error Try: =SUM((IF(MOD(ROW(C1:C29),3)=0,C1:C29))) array entered or =SUMPRODUCT(((MOD(ROW(C1:C29),3)=0)*(C1:C29))) normally entered -- HTH Sandy Replace@mailinator with @tiscali.co.uk "Steved" wrote in message ... Hello from Steved Below is my attempt but is returning a #NAME! Value. =SUM(IF(MOD(COL($C$3:$C$29)-1,$C$3)=0,$C$3:$C$29,0)) Thankyou. "Steved" wrote: Hello from Steved I have formulas in cell C3,C6,C9,C12,C15,C18,C21,C24 and C27 If I do this =C3+C6+C9+C12+C15+C18+C21+C24+C27 I get a #VALUE! in the cell Please What is require for me to get an answer. Thankyou. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
paste formulas between workbooks without workbook link | Excel Discussion (Misc queries) | |||
Help, Urgent Excel Formulas are not calculating | Excel Discussion (Misc queries) | |||
Problem with named formula's | Excel Worksheet Functions | |||
Way to make Excel only run certain formulas on a worksheet? | Excel Discussion (Misc queries) | |||
calculating formulas for all workbooks in a folder | Excel Worksheet Functions |