Problem with Range.Value

  • Thread starter Thread starter JLong
  • Start date Start date
J

JLong

I am having problems determining if a single cell range
value is zero or empty. How could I now if the cell is
empty of its value is Zero?
 
In VBA, try
IF ISEMPTY(Range("cellref"))

I tried this and it evaluated to false when there was zero entered in
cellref, and true when I deleted the zero.

=ISBLANK() has a similar effect when called as a worksheet function.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top