I ran your code and it ran fine in Excel 2013.
However, you have not shown all your code. It might help to show declarations--even better would be all the code in the entire Sub.
Also be aware that there are many differences between two computers, and the version of Excel might not be the issue here. The most obvious thing is the existence of the folder. I did not actually create this folder, create an attachment, etc., etc., but I got this string as the file string using these values:
Folder=testfolder
SONumber=99
SoldTo=testclient
and got this path. Does this look like what you are expecting?
testfolderSalesOrders\1. Unscheduled\SalesOrder 99-testclient.pdf
By the way, why start a string with the null string?
dname = "" & Range("Folder") & "SalesOrders\1. Unscheduled\SalesOrder " & Str(Range("SONumber")) & "-" + Range("SoldTo") & ".pdf"
Bookmarks