Hello,
I have an excel Input Text box as shown in the figure below. I want UIPath to type in the value through automation. Write cell activity does not work for Text boxes in excel.
I am trying to use the type into activity for the same. I have tried 3 ways so far:
The selectors are not recognized when I use desktop/basic recording
Anchor method - find image first and then type into - did not work.
Hi Gemlan,
Thank you for your response. I tried another way to fix this by using a one line macro code.
Sub Text(days_potential As String)
Worksheets(“Index”).TextBox1.Text = days_potential
End Sub
And this worked fine!