View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Nicholas B Nicholas B is offline
external usenet poster
 
Posts: 15
Default VBA version of ISBLANK()

Anyone know how to get VBA to check if a cell is blank before reading its
formula ?

If it was just a single cell I can point to it using a formula [ Eg
=ISBLANK(D12) ] and use VBA to read the value of that Cell (the one with the
ISBLANK() Formula).

But I've many cells I want to test, cannot find a VBA equivalent to
ISBLANK() and if I use the following line

FormulaB4Change = CStr(ActiveCell.Formula)

The code crashes on empty cells

Nick