"Clear" Worksheet Function?

MattHyatt

New Member
Joined
Oct 13, 2002
Messages
6
Cell A1 in my worksheet contains the string ="". Many (all?) functions that call on A1 return #VALUE errors. Is there a way to get the offending functions to treat the ="" the same as an empty (or zero) cell with another function, WITHOUT changing the contents of A1?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
If all else, you can try this:

if(A1="",0,A1)

The only other thing I can think of to tell you is to check the number formatting for A1.
 
Upvote 0
Ah, that did it. Sometimes I get so caught up in looking for complex answers I overlook the obvious. Thanks for getting me back on track.
 
Upvote 0
On 2002-10-14 15:25, MattHyatt wrote:
Cell A1 in my worksheet contains the string ="". Many (all?) functions that call on A1 return #VALUE errors. Is there a way to get the offending functions to treat the ="" the same as an empty (or zero) cell with another function, WITHOUT changing the contents of A1?

Not all Excel worksheet functions will return #VALUE! (e.g., SUM) when they encounter "", but all arithmetic operators will. What functions are given you difficulties?
 
Upvote 0

Forum statistics

Threads
1,203,472
Messages
6,055,612
Members
444,803
Latest member
retrorocket129

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top