Hi
Iam extracting the data table from the web Outlook Inbox… I need the latest email to read… As we have a different date and time format…
Find the Below Screenshot for your reference
Hi
Iam extracting the data table from the web Outlook Inbox… I need the latest email to read… As we have a different date and time format…
Find the Below Screenshot for your reference
Hi,
Hope it works
can we have any query for this
The DateTime.ParseExact method will accept multiple formats (in an array) and use the first one that matches.
Use Add Data Row to create a third column as a datetime.
For Each Row in Datatable
Now you have the proper datetime value in the third column and can sort it with Sort Data Table. Then just take the first row, for example ExtractDataTable.Rows(0)(“Column1”).ToString will give you the Column1 value from the first row.
He’s talking about using the email activities. Typically you don’t use Extract to get emails from Outlook. You use Get Outlook Mail Messages.
https://docs.uipath.com/activities/other/latest/productivity/get-outlook-mail-messages
can u explain the stepwise