Hello, my robot is supposed to copy the date from Excel and paste it into the application. The format in Excel is: dd.mm.yyyy, but after pasting into the application, the format automatically changes to d/mm/yyyy - I added the sequence:
The robot enters the first date correctly, but when going to the second row, an error appears that the robot does not recognize the date d/mm/yyyy. How can I make the robot go through each rows, copy the date and paste it in the dd.mm.yyyy format?
The format you provide here is the format of the string you’re converting, not what you want it to be converted into. You have to be very careful about extra spaces like you have before yyyy. If the source is dd.mm.yyyy then that’s what you put here: DateTime.ParseExact(CurrentRow(“column name”).ToString,“dd.MM.yyyy”,
Note that you have to use MM not mm. MM is months, mm is minutes.
Thank you for helping me so much. The robot enters the date - from the first row correctly, from the second row instead of dd.MM.yyyy entered MM.dd.yyyy - dates in excel are entered in the same way. What could be the cause?
Hi @sullivanne ,
You can use
some case when we type into website, this text field change format of string you can use hot key and set a clipboard,
hope it help
regards,
I think it would be better to share at least the screenshot of your workflow so we all can see how you build it I suppose the solution is easy and there might just small mistake in the workflow.