I have one with 2 columns.so I need to extract the latest date of Rejected date, resubmitted date and posted (Uploaded by ) date along with comments using UiPath.
I have attached the input screenshot for your reference.
For each Row in datatable
** Else If CurrentRow(“Status”).ToString.ToUpper.Contains(“POSTED”) - use Regex to get date and store in your posted date variable
** Else If CurrentRow(“Status”).ToString.ToUpper.Contains(“RESUBMITTED”) - use Regex to get date and store in your resubmitted date variable
** Else If CurrentRow(“Status”).ToString.ToUpper.Contains(“REJECTED”) - use Regex to get date and store in your rejected date variable