By using listi.net you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

listi.net

 


IsEmpty( ) vba function

Determines if a variable isn't set yet.

Immediate Window


s = null
? ismissing(s)
False

? isempty(s)
True

? isempty("")
False
? isempty(y)
True

? isempty(0)
False




I created a bug by adding & "" to a request.querystring("xyz") & ""

and testing for isEmpty()
blog comments powered by Disqus