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?