Hello, everyone. I’m kind new with UiPath. I tried to change the formatting of my date inside column in dataTable. The input format is kind like this “08/05/2020 00:00:00”, the output I expect is like this “5 Aug 2020”. For what I’ve done is like this
for each row in dataTable{
dateChange = row(2).ToString(“d MMM yyyy”) // assume the column index is in 2nd index.
}
I got error that told me dissallows implicit converstion String to Integer. Any guidance of you help me a lot.