How to set a date value to next week friday

0
Hi Team, I am trying to set a date value to next week friday(for example if user save changes today then date value should be 2021-Feb-19) I have tried using formatDateTime() but it is giving below error,     Thanks In Advance
asked
1 answers
1

You could try something like this:

addDays(addWeeks([%BeginOfCurrentWeek%], 1), 5)

answered