Each new record in Ninox is assigned a unique ID (identifier).
The numbering starts at 1 for a new table and increments by 1 for each new entry (2, 3, etc.).
Deleted IDs are not reassigned. Therefore, the highest ID in the table reflects the total number of records created, including those that were deleted and are no longer visible.
ID Representation:
IDs can be represented as numbers or text.
When represented as text, the ID combines the table's ID (one or more uppercase letters) with the record number.
Example: "A1"
Key notes on IDs
Converting an ID to Text:
Use the string() function to get a textual representation of an ID.
The text() function only returns the numeric part of the ID as text. Example: "1".