Training for Automation Developer Associate (v2024.10)

Hello everyone,

unfortunately a mistake has crept in. In the training video “For Each Starting Project with Input Files” at minute 9:26 (Log Message) the following must be entered:
“The new name of the file " + InvoiceName.FullName + " is: " + NewInvoiceName.Substring(NewInvoiceName.LastIndexOf(”"))
Otherwise the thing will fall flat on its face :wink:

And to get just the file name like this:
“The new name of the file ” + InvoiceName.FullName.Substring(InvoiceName.FullName.LastIndexOf(“\”)) + “ is: ” + vbNewLine + NewInvoiceName.Substring(NewInvoiceName.LastIndexOf(“\”))

Greetz
Clinty

Could you please let us know the exact course name where the issue is? Thanks!

Hello,

hope this helps:

Greetz
Clinty

We checked it with our SME and he says both will work fine, Thanks!