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)