Excel Application Scope name excel file

Hello @rebekka.haendel,
you need to put an file path to your file like ‘c:\documents\test.xlsx’
But you can use Assign activity with Array of String to store all files in your folder with this command:
System.IO.Directory.GetFiles(“C:\documents”,“*.xlsx”)
Assign activvity:

After that you can use For Each loop to pass through every document in folder.

You can check couple of solutions:

Cheers,
Dino