From b9694ee2c4355b6fa8ec32de5ed76c3b5b1c31bc Mon Sep 17 00:00:00 2001
From: Raju Udava <86527202+dstala@users.noreply.github.com>
Date: Tue, 26 Aug 2025 13:29:26 +0530
Subject: [PATCH] docs: lmt
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
---
.../field-types/formula/generic-functions.mdx | 28 ++++++++++++++++++-
1 file changed, 27 insertions(+), 1 deletion(-)
diff --git a/content/docs/fields/field-types/formula/generic-functions.mdx b/content/docs/fields/field-types/formula/generic-functions.mdx
index be520a83..b9e00acc 100644
--- a/content/docs/fields/field-types/formula/generic-functions.mdx
+++ b/content/docs/fields/field-types/formula/generic-functions.mdx
@@ -21,4 +21,30 @@ RECORD_ID()
RECORD_ID() => 1
```
----
+## LAST_MODIFIED_TIME
+
+This feature is only available for the tables created by using NocoDB interface.
+
+Returns the most recent timestamp when a record was updated.
+
+* By default, it reflects any change made to the record.
+* 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.
+
+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.
+
+**Return type:** Date/Time
+
+#### Syntax
+
+```plaintext
+LAST_MODIFIED_TIME()
+LAST_MODIFIED_TIME([Status], [Owner])
+```
+
+#### Sample
+```plaintext
+LAST_MODIFIED_TIME() => 2023-10-05 14:30:00
+LAST_MODIFIED_TIME([Status], [Owner]) => 2023-10-05 14:30:00
+```
+
+