JenniferMurphy
Well-known Member
- Joined
- Jul 23, 2011
- Messages
- 2,687
- Office Version
- 365
- Platform
- Windows
A UDF I was working on failed when passed data from a cell that was "empty". To get it to work, I had to change the If statement to this:
Is this the correct (& optimal) statement?
Code:
If IsNumeric(parm) And Not IsEmpty(Parm) Then . . .
Is this the correct (& optimal) statement?