37324519
(37324519)
October 4, 2023, 9:19am
1
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
37324519
(37324519)
October 4, 2023, 9:44am
3
Thank you very much for your assistance
1 Like
Hope it’s clarified
If yes would recommend to close this
Forum FAQ - How to mark a post as a solution
This document is part of our beginners guide .
This article will teach you how to properly mark a post as a solution.
We were closely following our last UiPath Forum feedback round! topic and carefully extracted all the bits of feedback that was provided. As such, we would like to tackle the topic of solutions on our Forum and how to properly use them.
When is the topic resolved?
The topic can be considered resolved when the topic author has fo…
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!!!