Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If I am adding a column that has an #N/A, it returns an #N/A. How can I get
it to work? I used an if statement whe =if(+B5="#N/A",0,+B5)- it did not work. Help. Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try,
=IF(ISNA(B5),0,B5) Mike "Al G" wrote: If I am adding a column that has an #N/A, it returns an #N/A. How can I get it to work? I used an if statement whe =if(+B5="#N/A",0,+B5)- it did not work. Help. Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
First of all, remove the leading '+' signs.
Second, to test for #N/A, use ISNA(): =IF(ISNA(B5),0,B5) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions Peltier Technical Services, Inc. - http://PeltierTech.com _______ "Al G" <Al wrote in message ... If I am adding a column that has an #N/A, it returns an #N/A. How can I get it to work? I used an if statement whe =if(+B5="#N/A",0,+B5)- it did not work. Help. Thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(ISNA(B5),0,B5)
-- Kind regards, Niek Otten Microsoft MVP - Excel "Al G" <Al wrote in message ... If I am adding a column that has an #N/A, it returns an #N/A. How can I get it to work? I used an if statement whe =if(+B5="#N/A",0,+B5)- it did not work. Help. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|