Hello all,
I would like to ask you guys for help, as I’m working on a sheet to produce a loop of reminders for us like:
Task A to repeat every Monday and send out a mail which can be done with the additional actions.
Task B to repeat every first Tuesday in a month
My problem is that I have no clue how to write a formula which takes the current date and activates a trigger to send out a mail.
I already created an extra sheet where I have manually added:
Year – Month – Date – Weekday
2023 – 6 – 2 – Friday
But maybe I’m thinking to complicated. I would appreciate every hint and help.
Ahh and I had a certain case where SeaTable directly helped me with, but I don’t understand the logic behind it. (Datum = Date) The request was for a formula for the 25. of each month and when the 25. is a Saturday or Sunday show the date for the Friday before as we need it for our time management.
IF(AND(WEEKDAY(DATE(YEAR({Datum}), MONTH({Datum}), 25))>=2, WEEKDAY(DATE(YEAR({Datum}), MONTH({Datum}), 25))<=6), DATE(YEAR({Datum}), MONTH({Datum}), 25), IF(WEEKDAY(DATE(YEAR({Datum}), MONTH({Datum}), 25))>6, DATE(YEAR({Datum}), MONTH({Datum}), 25) - WEEKDAY(DATE(YEAR({Datum}), MONTH({Datum}), 25)) + 6, DATE(YEAR({Datum}), MONTH({Datum}), 25) - WEEKDAY(DATE(YEAR({Datum}), MONTH({Datum}), 25)) - 1))
But there again no clue to tell SeaTable “Please take the date and activate the trigger for it”
Anyway have a nice day everyone
Dom