Manipulate time stamp

Hi i have a use case where i get a timestamp from a webhook and then i need to add 5 business day and the send it forward in the scenario anybody have an idea?

@Martin_Ravn

Timestamps are usually seconds or thousandths of seconds.

So, to add 5 days, simply add (5 * 24 * 60 * 60) or (5 * 24 * 60 * 60 * 1000) to the timestamp.


Jim - The Monday Man (YouTube Channel)
What is Make & How can it help you with monday?
We Create Custom Solutions - Your Make or Ours
Schedule a 1-on-1 Tutorial Session (for monday, Make or Google Sheets)

1 Like

This is the time stamp i am getting from the the webhook which block should i use for this ?

perfect would be to add 5 business days.

@Martin_Ravn

To put the expression in it’s own module use “Set multiple variables”. But it is not really needed. You can just include the expression wherever you need it.

I missed the “business days”. They can be complex. But assuming a “normal” 5 day workweek and discounting holidays, just add 7 days instead of 5.


Jim - The Monday Man (YouTube Channel)
What is Make & How can it help you with monday?
We Create Custom Solutions - Your Make or Ours
Schedule a 1-on-1 Tutorial Session (for monday, Make or Google Sheets)

1 Like