We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The IsEmpty operator returns boolean true if the input parameter is an empty string.
IsEmpty
IsEmpty(a)
a
In principle, this is short for Equals(param1, ""), but looks more readable.
Equals(param1, "")
Example: If(IsEmpty($email), "No EMail available", "mailto:" + $email)
If(IsEmpty($email), "No EMail available", "mailto:" + $email)