Skip to content

Commit 4cfc64d

Browse files
committed
docs: lmt
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
1 parent 198fb0e commit 4cfc64d

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

content/docs/fields/field-types/formula/generic-functions.mdx

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,30 @@ RECORD_ID()
2121
RECORD_ID() => 1
2222
```
2323

24-
---
24+
## LAST_MODIFIED_TIME
25+
26+
<Callout type="note">This feature is only available for the tables created by using NocoDB interface.</Callout>
27+
28+
Returns the most recent timestamp when a record was updated.
29+
30+
* By default, it reflects any change made to the record.
31+
* Optionally, you can specify one or more editable fields as arguments. In that case, the function only returns the last time any of those specified fields were updated.
32+
33+
<Callout type="note">Field-level tracking support was introduced on September 1, 2025. For updates prior to this date, historical information at the field level does not exist and will be returned as null. This does not affect default record-level tracking.</Callout>
34+
35+
**Return type:** Date/Time
36+
37+
#### Syntax
38+
39+
```plaintext
40+
LAST_MODIFIED_TIME()
41+
LAST_MODIFIED_TIME([Status], [Owner])
42+
```
43+
44+
#### Sample
45+
```plaintext
46+
LAST_MODIFIED_TIME() => 2023-10-05 14:30:00
47+
LAST_MODIFIED_TIME([Status], [Owner]) => 2023-10-05 14:30:00
48+
```
49+
50+

0 commit comments

Comments
 (0)