Currently I have the Excel dataset with a date column in format (“yyyy-MM-dd hh:mm:ss”), you may see below screenshot for your reference:
What I trying to achieve is add one more column or replace the existing column in date format (“yyyy-MM-dd”), if I do it in manual way will use the excel formula (“=DATE(YEAR(F2),MONTH(F2),DAY(F2))”) to extract the desired date format.
Do you guys have any idea how UiPath can achieve this?
An alternate method would be to read the sheet into a datatable, add the column to the datatable, fill it with values, and then write back to the sheet. This would result in actual values in the sheet, not formulas.