mirror of https://github.com/nocodb/nocodb
Browse Source
* fix(nc-gui): show view in docs btn from formula suggestion modal only if docs link is present * fix(nocodb-sdk): add docs link form `REGEX_MATCH` formula * docs: datetime routines * docs: add missing links * fix(nc-gui): AI pr review suggestion * docs: pr ai review changes * docs: formula record id --------- Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com>pull/8002/head
Ramesh Mane
8 months ago
committed by
GitHub
4 changed files with 114 additions and 6 deletions
@ -0,0 +1,24 @@ |
|||||||
|
--- |
||||||
|
title: 'Generic Functions' |
||||||
|
description: 'This article explains system functions & miscellaneous functions that can be used in formula fields.' |
||||||
|
tags: ['Fields', 'Field types', 'Formula'] |
||||||
|
keywords: ['Fields', 'Field types', 'Formula', 'Create formula field', 'System functions', 'Miscellaneous functions'] |
||||||
|
--- |
||||||
|
|
||||||
|
# System Functions |
||||||
|
|
||||||
|
## RECORD_ID |
||||||
|
|
||||||
|
The `RECORD_ID` function returns the unique identifier of the record. |
||||||
|
|
||||||
|
#### Syntax |
||||||
|
```plaintext |
||||||
|
RECORD_ID() |
||||||
|
``` |
||||||
|
|
||||||
|
#### Sample |
||||||
|
```plaintext |
||||||
|
RECORD_ID() => 1 |
||||||
|
``` |
||||||
|
|
||||||
|
--- |
Loading…
Reference in new issue