How can I upload files that matches with an Excel listing?

Hello everyone,

I’m new in the UiPath world and I have a doubt about one activity that I’m trying to resolve in UiPath Studio.

In my activity I need fill out a form with data that I’ve register in one Excel file and upload images what are named with the people who are registered in the listing.

Does anyone know how can I solve my activity?

My Workflow is attached here. :slight_smile:

Base_selectores2.zip (623,3 KB)

Hi,

If the file name is always firstname_lastname.jpg style, it’s unnecessary to use GetFiles method. Probably the following will work. Can you try this?

"C:\Users\jjlof\Documents\UiPath\Base_selectores2\Photo\"+CurrentRow("Nombres").ToString()+"_"+CurrentRow("Apellidos").ToString+".jpg"

image

Regards,

You’re a amazing, man!

Thanks a lot :saluting_face:

1 Like

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