I want to change the whole column values into “dd/MM/yyyy” format…
May I know is there any shortcut to do it without looping each column?Because when I tried to change it in the Format cells option, the column values are not turning into the required format(“dd/MM/yyyy”).
Please suggest me some idea on to how to achieve this. @Palaniyappan
oh cool,Thanks for your quick response @AshwinS2 I will try and get back to you . Because the rows in the excel will be more than 5k. So I worry about how to reduce the time on it @AshwinS2
So, I need to get the last row count of the column and then I need to take that value and loop through with the format . After that I should use the write cell activity to fill the values?
Is there any other way to fill the entire column other than the above @AshwinS2
A simple approach is by using Invoke VBA activity of uipath and in that activity use a vb script on the column you want to change the date format , this would hardly take 5 seconds to run in full.
As I have mentioned that I am trying to change it to “dd/MM/yyyy hh:mm” format. it is not happening while doing it manually @ppr
Using Read range and foreach approach , it is working,but it is taking lot of time to finish it. it is converting each row into dateformat and doing it which will take lot of time. as the excel sheet may have more than 5k rows
Thanks for sharing @Srini84 This approach is taking more time as it has to iterate all the rows. I have more than 5k rows in my excel and sometimes it has 10k rows and that will take more time to complete. May I know is there any other way to complete without looping ?