Mackeral
Board Regular
- Joined
- Mar 7, 2015
- Messages
- 249
- Office Version
- 365
- Platform
- Windows
I have found 2 different versions of documentation for the VBA function "IsEmpty":
One on TechNet says the function is used to test "if the value is a blank cell or uninitialized variable, the function will return TRUE. Otherwise, the function will return FALSE".
The other on Microsoft says the function returns "TRUE if the variable has as been initialized, otherwise it returns FALSE.
My own solution to this delima is the following Function:
Mac
One on TechNet says the function is used to test "if the value is a blank cell or uninitialized variable, the function will return TRUE. Otherwise, the function will return FALSE".
The other on Microsoft says the function returns "TRUE if the variable has as been initialized, otherwise it returns FALSE.
My own solution to this delima is the following Function:
Code:
Function Is_Empty(Argument
Is_Empty = IsEmpty(Argument
Code:
[COLOR=#333333][FONT='inherit']) or Argument = ""
End Sub ' Is_Empty()[/FONT][/COLOR]
Mac
Last edited: