Hello-
I need to find the 1st day of the month 60 days after a particular date. For instance, if the inputted date was 4/5/2020 + 60 days, I would be looking for 7/1/2020. I know how to do in excel: =EOMONTH(A1,2)+1.
Any ideas how to accomplish as an formula expression in power automate and place in a variable? I figure I would use the addDays function like below to add 60 days, but then I don't know how to find the 1st day of the next month. Do I have to set 2 variables (1) for date + 90, then (2) take the new date variable and use startofMonth expression to get 1st day of that month? Seems convoluted to do it that way. Thoughts?
addDays(variables('varStartDate'),60)