Hi,
I'm working on a flow in PAD to convert a CSV to a more human readable Excel-sheet.
I'm mostly done, but I'm getting stuck on converting a DateTime column (example data: 2021-05-19T16:17:59.2758102Z) into two separate columns; Date (example: 2021-05-19) and Time (example: 16:17:59.2758102Z - though preferable would be just: 16:17).
For my manual work with this I have two simple formulas for splitting the DateTime at the 'T' character.
Date: =LEFT(A2; SEARCH("T";A2;1)-1)
Time: =RIGHT(A2;LENGTH(A2)-SEARCH("T";A2;1))
However I'm not sure how to implement this in PAD.
My thought was inserting two new rows in the table and use the formulas to calculate the values, but I'm not sure how to go about that in PAD. Secondly I would prefer to delete the original DateTime column before handing the sheet over, but I would need to convert the calculated rows to values only before doing that I'm guessing.
Any hints, solutions or suggestions are most welcome.
Kind regards
Laage