So when I start my robot I have to put in a date for something specific, this date has to be used later in the process, so I can put it in a word document and add 3 days for the specific days. But I don’t know exactly how I can invoke the argument, and send it with to the process. Anyone have an idea?
Form designer has arguments that you can create and add a out argument and link it to field key of the date…then in process you can sue the argument to get the data then dateVar.AddDays(3) can give you date with 3 days added if you need to convert to string then use .ToString("MM/dd/yyyy") the format can be changed as needed