hi all)
how to return error frag
in case when function can't execute properly
expecting that this function will return Range object
thanx!
how to return error frag
in case when function can't execute properly
expecting that this function will return Range object
Code:
Function getRange(startCell As String) As Range
dim everythingIsOk as boolean
...
if everythingIsOk then
Set getRange= Range(....
else
Set getRange = ????????
end if
End Function
thanx!