[]
Returns a boolean value indicating whether an object is an array.
Syntax
IsArray(object)
Arguments
object - an object to inspectExamples
You can use the following expression to determine if the current Comments field is an array.
{IsArray(Comments)}
Returns a boolean value indicating whether an object is a date.
Syntax
IsDate(object)
Arguments
object - an object to inspectExamples
You can use the following expression to determine if the current ShipDate field is a date.
{IsDate(ShipDate)}
Returns a boolean value indicating whether an object is NULL.
Syntax
IsNothing(object)
Arguments
object - an object to inspectExamples
You can use the following expression to determine if the current Comments field is a null value.
{IsNothing(Comments)}
Returns a boolean value indicating whether an object is a number.
Syntax
IsNumeric(object)
Arguments
object - an object to inspectExamples
You can use the following expression to determine if the current SalesAmount field is a number.
{IsNumeric(SalesAmount)}