Importing Date from excel and applying it on the form

Hello I’m struggling to get a date value from excel I cant figure out how to make the ai to select a date value on my form using data from excel here’s my code below I’m using but I keep getting errors when i use it

Here’s the code:
DateSelectionType.Date.((string)CurrentRow[“OrderDate”]).ToString()

Hi

Did u try with clipboard ai
It does this process

Download from here and explore

Check this video demo for reference

Cheers @37324519

Thank you very much for your assistance

1 Like

Hope it’s clarified

If yes would recommend to close this

If not we can keep this discussion open

Cheers @37324519

Hello @37324519

dateString As String = DateTime.ParseExact(CurrentRow(“OrderDate”).ToString(), “MM/dd/yyyy”, CultureInfo.InvariantCulture).ToString(“MM/dd/yyyy”)

Thanks & Cheers!!!