Is it possible to use the Type Into activity within an Input Dialogue Box activity to accurately input dates?

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?

@Aditya_Nalawade

use for each row in datatable activity

inside use type into activity

and pass this Cdate(currentrow(“ColumnName”).tostring).tostring(“dd/MM/yyyy”)

cheers

1 Like

Hi

There are two ways with which you can handle this situation

  1. 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

  2. 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

Hope this helps

Cheers @Aditya_Nalawade

1 Like

Thank you for suggesting the DelayBetweenKeys solution. It worked perfectly! :heart:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.