Hello,
I get this error when using Read Range Workbook activity.
the error in the file argument
Thanks for helping.
Now the error should be solved.
If you are using the standard For Each activity instead of the specific For Each File in Folder activity, make sure the TypeArgument in the Properties panel is set to System.IO.FileInfo . If it’s set to Object (the default), it won’t recognize .FullName .
After the Read Range Workbook was recently updated it no longer defaults to local paths, but uses file resources instead.
You could click the plus icon and switch it to Use Local File which accepts your input.
Or you could define the resource as such:
LocalResource.FromPath(CurrentFile.FullName)
Regards
Soren