Calculate date of overnext month

0
Hi everbody, I hope you are all okay and healthy. I want to calculate the begin of the overnext month within a microflow.    Example: The input is the todays date (22.4.20) so the output should be 01.06.2020 in this case. With the standard functions I found I can only add full months, minutes etc… :-(   Thank you!
asked
1 answers
1

I would try:

trimToMonthsUTC(addMonthsUTC([%CurrentDateTime%], 2))

You should test that with February, I don’t know what addMonths() actually does. Alternatively, you could try:

 

trimToMonthsUTC(addMonthsUTC(trimToMonthsUTC([%CurrentDateTime%]), 2))

 

answered