Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default remove the #n/a and make it 0

Hi
How do i remove the #n/a and make it 0

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 747
Default remove the #n/a and make it 0

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default remove the #n/a and make it 0

Hi,

=if(iserror(yourformula),"",your formula)

"mahmoud moustafa" wrote:

Hi
How do i remove the #n/a and make it 0

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,203
Default remove the #n/a and make it 0

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default remove the #n/a and make it 0

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I remove the #div or N/A and make it 0 when using VLookup? JeaneIsaac Excel Worksheet Functions 26 February 10th 10 05:15 PM
Remove Chart Canvas or make transparent in Excel 07 on XP LisaK Charts and Charting in Excel 2 January 18th 09 05:00 AM
remove convert/extract the number from'12345.56; ie remove ' sign WAN Excel Worksheet Functions 2 January 10th 08 12:38 PM
How do I remove hyperlink if 'remove' option is disabled Vipul New Users to Excel 1 January 8th 08 02:34 PM
how to make value whole (remove decimal point) Roger Excel Worksheet Functions 1 July 18th 07 11:20 PM


All times are GMT +1. The time now is 10:14 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"