Hello! Need some help again😅 and you all were super helpful last time so here we go again!
I have this formula:
DATEADD(DATETIME_PARSE({Meeting End Time},'HH:mm'),{Meeting Length}+15,'minute')
And what I am trying to do is have an email sent out in 15 mins after the meeting has ended. I tried:
IF(NOW()=DATEADD(DATETIME_PARSE({Meeting End Time},‘HH:mm’),{Meeting Length}+15,‘minute’),“YES”,“NO”)
Thus making the cell say yes and automation that reads that cell so if it sees “YES” to send out an email. But the if statement I realize doesn’t constantly check the agreement only when a cell is updated. Does anyone have any ideas on what I should do?