多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
511 B

---
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
```
---