I think, for n°2, you could get some inspiration from this doc .
It’s not exactly what you’re looking for but it might help (well, it’s the first thing that came to my mind reading your post )
I’ve got a formula though to get the start of the next month which might help with the automation.
Simple and elegant formula you got there! Thanks for sharing.
I’m guessing it would be some rule where if “next month” = today(), action.
However, EndOfMonth(today()) is changing every day. Wont that rule never trigger because once 11/1/2019 hits, the result of your formula will change to start of next month?
I think that EndOfMonth(Today()) just take the month out of Today() so it shouldn’t change everyday, but for the trigger of the automation, I’m effectively unsure (I don’t use that tool that much) .
It was all just an idea to play around with
You could also go with something like this :
And using in the Step 2 of the automation something like this :
What I often do is set up a button that the automation will “push” and set the button to be disabled on all but the desired date (e.g. Disable if Today()!=EndOfMonth(Today()). Then you can set a daily automation, and whenever the button is disabled, it will just skip it.
This is perfect and makes total sense. I didn’t even know automations could be used to trigger buttons. This opens up a world of automation possibilities! Thanks for sharing!