I have a logic app I'm working on that I'd like to run on the final Monday of each Month.
I've taken a look at some existing, somewhat similar posts on how to achieve this, but I've had no luck in finding a simple solution.
Is it possible to specify this simply via an Azure Expression? Or a Trigger Condition?
Any help and guidance on where to look is appreciated. I will be periodically updating this thread with my solutions as I continue to research the topic.
Thanks
Somewhat near solution:
The beneath expression does great job at returning the final day of the month. I may make use of this and minus a certain number of days. Obviously this won't always be a Monday.
@{addDays(startOfMonth(addDays(startOfMonth(utcNow()),32)),-1)}