Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Conditional Formating

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a conditional
formating which can show "N/A" instead of #DIV in the worksheet. How can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 772
Default Conditional Formating

Modify this

=IF(ISERROR(formula),"N/A",formula)
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a conditional
formating which can show "N/A" instead of #DIV in the worksheet. How can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Conditional Formating

I tried, but it doesnt work........ is there any other ways to do?

"John Bundy" wrote:

Modify this

=IF(ISERROR(formula),"N/A",formula)
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a conditional
formating which can show "N/A" instead of #DIV in the worksheet. How can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Formating

Post the formula that's returning the #DIV/0! error.

Biff

"kaci" wrote in message
...
I tried, but it doesnt work........ is there any other ways to do?

"John Bundy" wrote:

Modify this

=IF(ISERROR(formula),"N/A",formula)
--
-John Northwest11
Please rate when your question is answered to help us and others know
what
is helpful.


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a
conditional
formating which can show "N/A" instead of #DIV in the worksheet. How
can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 21
Default Conditional Formating

Formula: =+AR23/(AO23*0.25)-1

Where AO23 is 0.



"T. Valko" wrote:

Post the formula that's returning the #DIV/0! error.

Biff

"kaci" wrote in message
...
I tried, but it doesnt work........ is there any other ways to do?

"John Bundy" wrote:

Modify this

=IF(ISERROR(formula),"N/A",formula)
--
-John Northwest11
Please rate when your question is answered to help us and others know
what
is helpful.


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a
conditional
formating which can show "N/A" instead of #DIV in the worksheet. How
can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Formating

Try this:

=IF(AO23=0,"N/A",AR23/(AO23*0.25)-1)

Biff

"kaci" wrote in message
...
Formula: =+AR23/(AO23*0.25)-1

Where AO23 is 0.



"T. Valko" wrote:

Post the formula that's returning the #DIV/0! error.

Biff

"kaci" wrote in message
...
I tried, but it doesnt work........ is there any other ways to do?

"John Bundy" wrote:

Modify this

=IF(ISERROR(formula),"N/A",formula)
--
-John Northwest11
Please rate when your question is answered to help us and others know
what
is helpful.


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a
conditional
formating which can show "N/A" instead of #DIV in the worksheet. How
can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 620
Default Conditional Formating

In what way does =IF(ISERROR(AR23/(AO23*0.25)-1),"N/A",AR23/(AO23*0.25)-1)
not work?
What symptoms are you seeing?
--
David Biddulph

"kaci" wrote in message
...
I tried, but it doesnt work........ is there any other ways to do?


"John Bundy" wrote:

Modify this

=IF(ISERROR(formula),"N/A",formula)


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a
conditional
formating which can show "N/A" instead of #DIV in the worksheet. How
can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 772
Default Conditional Formating

Then something weird is going on, put this in, it causes a #DIV error and
then corrects it, try to modify it or post your formula he
=IF(ISERROR(1/0),"N/A","")
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.


"kaci" wrote:

I tried, but it doesnt work........ is there any other ways to do?

"John Bundy" wrote:

Modify this

=IF(ISERROR(formula),"N/A",formula)
--
-John Northwest11
Please rate when your question is answered to help us and others know what
is helpful.


"kaci" wrote:

Hello experts

I have a cell which have a formula and shows a percentage of growth.
However, some cells result in #DIV . I would like to have a conditional
formating which can show "N/A" instead of #DIV in the worksheet. How can I do
it?

If conditional formating cannot do it, any other ways to do it?

Thanks alot.

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
Conditional formating is greyed out and unavailable Strider Excel Discussion (Misc queries) 2 October 5th 06 06:39 PM
Conditional Formating Zee Excel Discussion (Misc queries) 5 August 10th 06 02:56 PM
excel conditional formating decimal fractions Andy Dixon Excel Worksheet Functions 6 April 17th 06 10:25 PM
Conditional formating using formulas arifnj Excel Worksheet Functions 4 October 27th 05 01:56 PM
VLOOKUP & Conditional Formating Help. Excel'ed Failures Excel Discussion (Misc queries) 6 August 16th 05 04:46 PM


All times are GMT +1. The time now is 05:05 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"