Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Q Q is offline
external usenet poster
 
Posts: 25
Default clear formula that does not return a value automatically?

Hello:

I have a number of cells that has an If statement. If it is false, then the
cell will be set to "". Is there a way to automatically clear the formula if
the evaluation is false?

The reason I want to clear the formula is when I create a graph based on the
cells with formula. If a cell has a formula, but no value, Excel still plots
that point and assumes it to be 0. If I manually delete those formula that
does not return a value, then Excel will exclude those plots in the plot even
though the empty range is part of a series.

If there is not a way to clear a formula the returns nothing, would it be
possible to suppress those points in the graph?

Thanks

Q
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,440
Default clear formula that does not return a value automatically?

Make the result of the formula NA() instead of ""

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Q" wrote in message
...
Hello:

I have a number of cells that has an If statement. If it is false, then
the
cell will be set to "". Is there a way to automatically clear the formula
if
the evaluation is false?

The reason I want to clear the formula is when I create a graph based on
the
cells with formula. If a cell has a formula, but no value, Excel still
plots
that point and assumes it to be 0. If I manually delete those formula
that
does not return a value, then Excel will exclude those plots in the plot
even
though the empty range is part of a series.

If there is not a way to clear a formula the returns nothing, would it be
possible to suppress those points in the graph?

Thanks

Q


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default clear formula that does not return a value automatically?

Hi,

It's better to suppress the points by returning #N/A instead of "" because
#N/A is ignored when charting. A su=implistics example of how to return NA

=IF(C2="",NA(),33)

Mike

"Q" wrote:

Hello:

I have a number of cells that has an If statement. If it is false, then the
cell will be set to "". Is there a way to automatically clear the formula if
the evaluation is false?

The reason I want to clear the formula is when I create a graph based on the
cells with formula. If a cell has a formula, but no value, Excel still plots
that point and assumes it to be 0. If I manually delete those formula that
does not return a value, then Excel will exclude those plots in the plot even
though the empty range is part of a series.

If there is not a way to clear a formula the returns nothing, would it be
possible to suppress those points in the graph?

Thanks

Q

  #4   Report Post  
Posted to microsoft.public.excel.programming
Q Q is offline
external usenet poster
 
Posts: 25
Default clear formula that does not return a value automatically?

Thanks Niek.

"Niek Otten" wrote:

Make the result of the formula NA() instead of ""

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Q" wrote in message
...
Hello:

I have a number of cells that has an If statement. If it is false, then
the
cell will be set to "". Is there a way to automatically clear the formula
if
the evaluation is false?

The reason I want to clear the formula is when I create a graph based on
the
cells with formula. If a cell has a formula, but no value, Excel still
plots
that point and assumes it to be 0. If I manually delete those formula
that
does not return a value, then Excel will exclude those plots in the plot
even
though the empty range is part of a series.

If there is not a way to clear a formula the returns nothing, would it be
possible to suppress those points in the graph?

Thanks

Q



  #5   Report Post  
Posted to microsoft.public.excel.programming
Q Q is offline
external usenet poster
 
Posts: 25
Default clear formula that does not return a value automatically?

Thanks Mike! It works!

"Mike H" wrote:

Hi,

It's better to suppress the points by returning #N/A instead of "" because
#N/A is ignored when charting. A su=implistics example of how to return NA

=IF(C2="",NA(),33)

Mike

"Q" wrote:

Hello:

I have a number of cells that has an If statement. If it is false, then the
cell will be set to "". Is there a way to automatically clear the formula if
the evaluation is false?

The reason I want to clear the formula is when I create a graph based on the
cells with formula. If a cell has a formula, but no value, Excel still plots
that point and assumes it to be 0. If I manually delete those formula that
does not return a value, then Excel will exclude those plots in the plot even
though the empty range is part of a series.

If there is not a way to clear a formula the returns nothing, would it be
possible to suppress those points in the graph?

Thanks

Q

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
Automatically paste cells that return a value, otherwise maintain existing formula. Cameron Stewart Excel Programming 2 July 23rd 04 10:35 AM
Automatically paste cells that return a value, otherwise maintain existing formula. Cameron Stewart Excel Programming 0 July 22nd 04 06:40 AM
Clear a Carriage Return from a String Value David McRitchie[_2_] Excel Programming 0 August 5th 03 09:54 PM
Clear a Carriage Return from a String Value RC- Excel Programming 0 August 5th 03 09:54 PM
Clear a Carriage Return from a String Value JS[_4_] Excel Programming 0 August 5th 03 09:47 PM


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

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

About Us

"It's about Microsoft Excel"