Expressions supported for backward compatibility
Since the AppSheet platform is constantly being improved and updated, we've made some changes since we first got started: some expression components used to look a little different. We support the syntax below to accommodate apps that still use them.
@(_HERE)
returns the current location as aLatLong
value; equivalent toHERE()
.@(_NOW)
returns the current date and time as aDateTime
value; equivalent toNOW()
.@(_TIMENOW)
returns the current time as aTime
value; equivalent toTIMENOW()
.@(_TODAY)
returns the current date as aDate
value; equivalent toTODAY()
.@(_UNIQUE)
returns a new uniqueText
value suitable for use as a key; equivalent toUNIQUEID()
.@(_USEREMAIL)
returns the user's email address as anEmail
value; equivalent toUSEREMAIL()
.@(_USERNAME)
returns the user's name as aName
value; equivalent toUSERNAME()
. Note that the user's name may not be reliably available to AppSheet, so this value should not be considered a reliable identifier.
New to expressions and formulas? See also Expressions: The Essentials.