Combine path + variable

How do I combine a file path in my computer to a variable on Excel Scope activity?

For example, let’s say I would like to have a path like that: C:\Windows\User\Desktop\VVV.xls (considering that “VVV” is the content of the variable)

@bipenett ,

you can use path.combine(“C:\Windows\User\Desktop”,VVV) - considered you have your file name in VVV Variable.

cheers :slight_smile:

1 Like

Hi @bipenett ,

strText = “vvv” - content of the variable
"C:\Windows\User\Desktop" + strText + “.xls”

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