Como automatizar el copiar datos de un Excel y pegarlos en una web para realizar busquedas

Necesito copiar datos numéricos de excel para después pegarlos en un sitio en la web para hacer una busqueda. He intentado por medio de un “Proceso transaccional” insertar la actividad “Ámbito de aplicación de Excel- Colocando la ruta de mi archivo” y despues inserto al ambito la actividad “Leer celda”, Dentro de esta actividad en la opcion salida no se que utilizar… siempre me arroja error.

Necesito completar esta tarea y no se si lo este haciendo bien.
Ya que no he podido si quiera abrir la hoja de excel.

Gracias

@Amaury_Ardila

welcome to our UIPath community.

  1. First use Read Range activity to read data from excel file and will give you output as DataTable and say ‘inputDT’

  2. And then use ForEach Row activity to iterate that datatable.
    ForEach row in inputDT
    use Type Into activity and pass row(“ColumnName”).Tostring

  1. Use Read Range activity Under Workbook to read data
  2. Step 1 will give you the Datatable
  3. Loop the Datatable . Use For Each for this step
  4. Open Website and Enter the data which ever you need .

Example :- In Name TextBox
If Dt is the datatable we obtain from step1
Dt(“Name”).ToString can be typed in the TextBox using TYPEINTO Activity