Skip to main content

The Due Date in the "Review and Send for Signature" step is defaulting to 10 days even though I have it set as 6 months in the step as illustrated below.

 Due Date in the "Review and Send for Signature"

 

 

For a workflow executed on July 24, 2024, the due date showing up on the "Review and Send for Signature" step is August 3, 2024 (10 days).

 

How do I get it to show the date 6 months from July 24, 2024.

 

Thanks.

hello @VI3DS 

I hope you are doing great. You are updating the attribute with due date right? if so then i can explain you the solution for updating due date according the set months in “review and send for signature step”

here is what you can do:

1. Add “Update Variable Value” step after “review and send for signature” step. and update the current date with the any date varible.
 

  1. Create one more final due date variable just like i did “Due_Date2” and here you will need to write the c# code
    Code = DateTime.Parse(GetVariableValue("due_date")).AddMonths(2);
     and if you adding 6 months then write 6 instead of 2 in the example.
    and the apply “update document metadata” step and update your due date.

    Thanks!

Reply