-
last
To return the last item of an array You can access the last entry of an array with this function. This function comes in handy if you try to access a record in an array of records.…
-
latitude
To return the latitude value of a given location value This function will extract the latitude of an address in a location field as a decimal number. Syntax latitude(location) Return number Example…
-
length
To return the count of all characters in a string or all items in an array This function returns the number of characters (with spaces) of a given text or the number of items in a given array.…
-
ln
To calculate the natural logarithm The function returns the logarithm to base e (the Euler’s number) and is therefore called the natural logarithm. It returns a positive number.…
-
loadFileAsBase64
To converts a file to base64 format This function converts a file into a base64 string. You can then use this in a REST API call, for example. Syntax loadFileAsBase64(file) loadFileAsBase64(nid,…
-
loadFileAsBase64URL
To convert a file to URL-compliant base64 format This function converts a file into a URL-compliant base64 string. You can then use this in a REST API call, for example.…
-
location
To return a location value with a given title, latitude, and longitude This function returns a location value based on a given latitude and longitude, which can have a random title.…
-
log
To calculate the logarithm The function returns the logarithm of a number to a base. If no parameter is specified for the base, it is 10. In the case of 0, the result is -∞ (minus infinity).…
-
longitude
To return the longitude of a given location value This function will extract the longitude of an address in a location field as a decimal number. Syntax longitude(location) Return number Examples…
-
lower
To output a string in lowercase This function converts uppercase characters in a text to lowercase. Other characters stay untouched. This can be useful for comparing strings or for correcting…
-
lpad
To fill up a given length with given padding at the beginning With this function, you fill a text at the beginning, i.e. to the left of the text, with one or more given characters up to the desired…
-
Mathematical
An overview of mathematical functions to perform tasks on numbers abs To return the absolute value of a number acos To calculate the arccosine asin To calculate the arcsine atan To calculate the…
-
max
To return the highest or latest value of an array Use this function to find the highest value or the latest value in an array.
The function works only with an array of numbers or time-related…
-
min
To return the lowest or earliest value of an array Use this function to find the lowest value or the earliest value in an array.
The function works only with an array of numbers or time-related…
-
month
To return the month from a date value as a number Use this function to return the month from a date value. This will be a number between 1 and 12, with January = 1, February = 2, … December = 12.…
-
monthIndex
To return a given month as a number out of a string With this function you extract the number of the month from a string, for example, March will be 3. This is helpful if the month is only available…
-
monthName
To return the full month name of a given date value This function will display the month’s name. This might be helpful if you want to group dates within a year by month.…
-
ninoxApp
To identify the type of environment that is currently being used This function lets you know in which environment Ninox is currently executed. Your return values could be web (on Ninox cloud) mac (on…
-
now
To return the current timestamp This function gives you the exact date and time from the exact moment when the function is executed. You are creating an exact timestamp.…
-
number
To convert a given value to a number It returns the values of different data types as a number. You can imagine this is needed quite often. The result depends on the data type.…
-
numbers
To return the IDs of the selected choice values of a given multiple choice field With this function, you'll get the IDs of the selected options. Multiple choice field:…
-
odd
To return Yes (true) if the number is odd With this function, you can check whether a number is odd, i.e. not divisible by 2 without remainder. The return value is either Yes (true) or No (false).…
-
openFullscreen
To open a given record in fullscreen mode This function will open the form view to fullscreen. Specify the record, which you'd like to show in fullscreen mode.…
-
openPage
To open a given page This function closes the current page and opens the given page. You can specify the request by adding a tab you want the page to be opened with.…
-
openPrintLayout
To open a record in a given layout in the print layout editor This function will open a specific print layout of a given record. Syntax openPrintLayout(nid,…