Hi all,
I need assistance with a formula where I want the box to check 30 minutes prior to the meeting, but I’m hitting a roadblock.
The "Start Date" is a Text Column. Below is the formula I’ve tried:
Start Date Helper Formula: =IF(ABS(NOW() - (DATE( VALUE(LEFT([Start Date]@row, 4)), VALUE(MID([Start Date]@row, 6, 2)), VALUE(MID([Start Date]@row, 9, 2))) + (VALUE(MID([Start Date]@row, 12, 2)) / 24) + (VALUE(MID([Start Date]@row, 15, 2)) / 1440) - (30 / 1440))) <= (1 / 1440), 1, 0)
I have also tried this formula: =IF(ABS(NOW() - ([Start Date]@row - (30 / 1440))) < (1 / 1440), 1, 0)
and this formula: =IF(ABS(NOW() - (DATEVALUE(LEFT([Start Date]@row, 10)) + TIMEVALUE(MID([Start Date]@row, 12, 5)) - (30 / 1440))) <= (1 / 1440), 1, 0)
I’ve attached a screenshot for reference.
Any guidance would be greatly appreciated!
Thank you in advance,