Hello everyone,
I'm facing a challenge with automating the synchronization between two tables: "Meeting Notes" and "Tasks."
Goal:
- When an entry of type "Action" is created in "Meeting Notes," a corresponding task should automatically be created in the "Tasks" table.
- Changes to an entry in either table should be automatically synchronized in the other table.
Current Implementation:
-
I've created a formula field in both tables that checks if the entry has been modified within the last 15 minutes:
IF(
AND(
DATETIME_DIFF(NOW(),LAST_MODIFIED_TIME(), "minutes") >= 1,
DATETIME_DIFF(NOW(),LAST_MODIFIED_TIME(),"minutes") <15
),
1,
0
)-
An automation is triggered by this formula field when it's "1" and the type is "Action." The automation then creates or updates the corresponding entry in the other table.
Problem:
The formula field remains at "1" even after the 15 minutes have elapsed. This causes the automations to be triggered repeatedly and unnecessarily.
Question:
Does anyone have an idea how I can solve the problem of the formula field automatically resetting to "0" after the 15 minutes have expired?
I appreciate your support!
Best regards,
Mirko
