Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Due Date in Automation - Second, third or fourth business day of following month

Aaron Corbin June 16, 2022

Hi All. 

 

I was able to create an automation to create a task with a due date of the first day of the following month using the following formula in the due date field: {{now.plusMonths(1).firstBusinessDayOfMonth}}

 

However, I need to do the same thing but to create a due date for the second, third and fourth business day of the following month. 

 

I tried this, but it gave me an error: {{now.plusMonths(1).secondBusinessDayOfMonth}}

 

Anyone know how to get this done?

 

Thanks, 

1 answer

1 accepted

0 votes
Answer accepted
Mark Segall
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 16, 2022

Hi @Aaron Corbin and welcome to the community!

There are only two options for ...BusinessDayOfMonth - first or last.  So you'll need to perform an additional calculation against it.  I haven't verified myself, but you could try this:

{{now.plusMonths(1).firstBusinessDayOfMonth.plusBusinessDays(1)}}

If that doesn't work, you could try capturing the first business day as a variable and then the second business day as a variable off of that.  Something like this:

varFirstBusinessDay: {{now.plusMonths(1).firstBusinessDayOfMonth}}

varSecondBusinessDay: {{varFirstBusinessDay.plusBusinessDays(1)}}

Aaron Corbin June 16, 2022

Thanks for the quick response. I will try this out! 

 

For the second option, how would you enter the two variables into the due date field?

Mark Segall
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 16, 2022

You would only enter the second variable...

{{varSecondBusinessDay}}

Like Aaron Corbin likes this
Aaron Corbin June 16, 2022

Ok I just tried the first option and it works! Thanks so much. 

Like Mark Segall likes this
Aaron Corbin June 16, 2022

Just to clarify, for the second option, would you enter this: 

{{varFirstBusinessDay.plusBusinessDays(1)}}

or this:

{{{{now.plusMonths(1).firstBusinessDayOfMonth}}.plusBusinessDays(1)}}
Mark Segall
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 16, 2022

Yes - That makes sense for the second option.  Eliminates the need for the second variable.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events