Nintex Workflow - How To Set a DateTime field to Current Date AND Time
What: Surprisingly had some trouble with this simple task, so here's how you can avoid wasting 20 minutes of your life. If you have a list column that is of type Date AND Time, it can be difficult to set it to the current date and time inside a workflow. Why: You might like to do this if you were logging changes to items to a separate list for reporting on later. How (quick): Create a string variable called 'CurrentDateTime', set the string variable to equal 'CurrentDate[space]CurrentTime'. Set your DateTime list column to equal the workflow variable CurrentDateTime. How (detailed): Create a Workflow Variable called ' CurrentDateTime ' of type ' Single line of text ' Create a 'Set Variable' step and set CurrentDateTime to equal value: Current Date[space]Current Time (these two values can be found under common variables tab). Update the field on the list item to equal the Workflow variable you just set. In my ...