Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It appears that most all 'is' functions are available in Excel
VBA2003, that is via a 'WorksheetFunction.IsNumber' type of call. However 'isblank' is not available. Perhaps this is an oversight? My main work is to use 'istext' and 'isnumber', but it would be nice to use 'isblank'. TomC |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you want an ISBLANK test that works the way the worksheet function does,
just do this... If Len(Range("A1").Formula) = 0 Then MsgBox "Cell is blank like ISBLANK reports" Else MsgBox "Cell has a value or a formula in it" End If If you test the Value property instead of the Formula property, then you can see if the cell is empty or, if it has a formula in it, displaying the empty string (""). -- Rick (MVP - Excel) "tomcee" wrote in message ... It appears that most all 'is' functions are available in Excel VBA2003, that is via a 'WorksheetFunction.IsNumber' type of call. However 'isblank' is not available. Perhaps this is an oversight? My main work is to use 'istext' and 'isnumber', but it would be nice to use 'isblank'. TomC |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
ISBLANK function not working when cell is blank dut to function re | Excel Discussion (Misc queries) | |||
ISBLANK and OR Function | Excel Discussion (Misc queries) | |||
ISBLANK FUNCTION | Excel Worksheet Functions | |||
ISBLANK() function | New Users to Excel | |||
isblank function | Excel Worksheet Functions |