Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
How do i remove the #n/a and make it 0 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
you can use =if(ISNA(your_formula),0,your_formula)
On May 13, 6:22*pm, mahmoud moustafa <mahmoud wrote: Hi How do i remove the #n/a and make it 0 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
=if(iserror(yourformula),"",your formula) "mahmoud moustafa" wrote: Hi How do i remove the #n/a and make it 0 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You need to "wrap" your formula with a test for the error like this:
=IF(ISNA(your formula),0,your formula) The most common #N/A comes from VLOOKUP() results without a match, so you might have a formula like this: =VLOOKUP(A1,B1:J99,3,FALSE) and you would rewrite it as =IF(ISNA(VLOOKUP(A1,B1:J99,3,FALSE)), 0, VLOOKUP(A1,B1:J99,3,FALSE)) "mahmoud moustafa" wrote: Hi How do i remove the #n/a and make it 0 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On May 13, 7:22*am, mahmoud moustafa <mahmoud
wrote: Hi How do i remove the #n/a and make it 0 Try this one: =IF(COUNTIF(B$2:B$7,B23),VLOOKUP(B23,B$2:D$7,2,0), "") |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I remove the #div or N/A and make it 0 when using VLookup? | Excel Worksheet Functions | |||
Remove Chart Canvas or make transparent in Excel 07 on XP | Charts and Charting in Excel | |||
remove convert/extract the number from'12345.56; ie remove ' sign | Excel Worksheet Functions | |||
How do I remove hyperlink if 'remove' option is disabled | New Users to Excel | |||
how to make value whole (remove decimal point) | Excel Worksheet Functions |