I am currently facing an issue when trying to enter dates from an Excel sheet into an required place using the Type Into activity. The dates are not being inputted correctly, and I’m seeking guidance on how to resolve this issue.
So i trying this method use the Type Into activity within an Input Dialogue Box activity to accurately input dates?
There are two ways with which you can handle this situation
Either we can fix the issue with type into activity itself where use DelayBetweenKeys to ensure that it types all characters without missing any
Or we can include fix based on the issue u r facing now
Or we can use input Dialog box to show the date value read from excel like you can pass that date value along text or label property of input dialog box and let the user to validate
Once users sees that they can validate and provide yes or no as answer
Get that yes or no answer and store in a string variable
Then use a IF condition like this
Strinput = “yes”
It goes to then block which means it is correct and u can now use that date value as it it
If wrong then use another input dialog box to get the actual date value as string input
Then u can use that string date value for your process