Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have values in cells C3, E3, G3, I3. I have input "n/a" in cell G3. In cell
K3, I have a formula ( =C3+E3+G3+I3). I am getting a #VALUE error message in cell K3 because of the n/a value. I would like to add the cells with number values and ignore the n/a value. I appreciate help with this. Thanks. -- Shooter |
#2
![]() |
|||
|
|||
![]()
One way:
=SUM(C3,E3,G3,I3) SUM() ignores text. In article , "Shooter" wrote: I have values in cells C3, E3, G3, I3. I have input "n/a" in cell G3. In cell K3, I have a formula ( =C3+E3+G3+I3). I am getting a #VALUE error message in cell K3 because of the n/a value. I would like to add the cells with number values and ignore the n/a value. I appreciate help with this. Thanks. |
#3
![]() |
|||
|
|||
![]()
Try this
=If(G3="n/a",(C3+E3+I3),(C3+E3+G3+I3)) "Shooter" wrote: I have values in cells C3, E3, G3, I3. I have input "n/a" in cell G3. In cell K3, I have a formula ( =C3+E3+G3+I3). I am getting a #VALUE error message in cell K3 because of the n/a value. I would like to add the cells with number values and ignore the n/a value. I appreciate help with this. Thanks. -- Shooter |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help adding text values | Excel Worksheet Functions | |||
Convert data type of cells to Text,Number,Date and Time | Excel Worksheet Functions | |||
To safety merge cells without data destroyed, and smart unmerge! | Excel Discussion (Misc queries) | |||
Heps to design Locked/Unlocked cells in protected worksheet | Excel Discussion (Misc queries) | |||
Convert data of cells to any type: Number, Date&Time, Text | Excel Discussion (Misc queries) |