PC Review


Reply
Thread Tools Rate Thread

DIsplay a value of the cell calculation is #N/A

 
 
=?Utf-8?B?QlpleWdlcg==?=
Guest
Posts: n/a
 
      17th Oct 2007
I have numerious calculations occuring in cells. Many times if certain values
cannot be calculted, #N/A appears. I would like the field to display "Null"
or "Nothing" if the error appears. How can this be done? I want a different
display instead of #N/A.
 
Reply With Quote
 
 
 
 
JE McGimpsey
Guest
Posts: n/a
 
      17th Oct 2007
One way:

Assuming your original formula is something like:

=VLOOKUP(A1,J:K,2,FALSE)

you can trap the error:

=IF(ISNA(MATCH(A1,J:J,FALSE)),"Nothing",VLOOKUP(A1,J:K,2,FALSE))

In article <89163499-477A-40AC-9901-(E-Mail Removed)>,
BZeyger <(E-Mail Removed)> wrote:

> I have numerious calculations occuring in cells. Many times if certain values
> cannot be calculted, #N/A appears. I would like the field to display "Null"
> or "Nothing" if the error appears. How can this be done? I want a different
> display instead of #N/A.

 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      17th Oct 2007
Add the ISNA function.

e.g.

=IF(ISNA(VLOOKUP(H9,$C$2:$F$35,3,FALSE)),"",VLOOKUP(H9,$C$2:$F$35,3,FALSE))

Will return a blank looking cell if result is #N/A

For "Null" type Null between the double quotes in formula


Gord Dibben MS Excel MVP

On Wed, 17 Oct 2007 14:56:02 -0700, BZeyger <(E-Mail Removed)>
wrote:

>I have numerious calculations occuring in cells. Many times if certain values
>cannot be calculted, #N/A appears. I would like the field to display "Null"
>or "Nothing" if the error appears. How can this be done? I want a different
>display instead of #N/A.


 
Reply With Quote
 
JW
Guest
Posts: n/a
 
      18th Oct 2007
On Oct 17, 5:56 pm, BZeyger <BZey...@discussions.microsoft.com> wrote:
> I have numerious calculations occuring in cells. Many times if certain values
> cannot be calculted, #N/A appears. I would like the field to display "Null"
> or "Nothing" if the error appears. How can this be done? I want a different
> display instead of #N/A.


=IF(ISNA(yourCalculation),"",yourCalculation)
or
=IF(ISNA(yourCalculation),"Null",yourCalculation)

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
In excel can I display a cell based on a calculation (eg M(14/2)? =?Utf-8?B?cm5yeHRyZW1l?= Microsoft Excel Programming 6 30th Jun 2006 06:59 AM
Can I display a cell based on a calculation (eg M(14/2)? =?Utf-8?B?cm5yeHRyZW1l?= Microsoft Excel Worksheet Functions 3 29th Jun 2006 11:32 PM
Can I display a cell based on a calculation (eg M(14/2)? How? =?Utf-8?B?cm5yeHRyZW1l?= Microsoft Excel Discussion 1 29th Jun 2006 10:34 PM
Save cell display but not calculation steve@appalachianwoods.com Microsoft Excel New Users 4 9th May 2006 04:04 PM
Shortcut key to display change the display from displaying cell values to cell formulae =?Utf-8?B?QUEyZTcyRQ==?= Microsoft Excel Programming 3 14th Sep 2004 12:07 PM


Features
 

Advertising
 

Newsgroups
 


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