Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if isnull ({yourfield}) then "No data"
else if {yourfield} = 0 then "Zero"
else "Value of " & ToText({yourfield})
if {yourfield} = 0 then "Zero"
else if isnull ({yourfield}) then "No data"
else "Value of " & ToText({yourfield})