@CasperVest ;
Using "On Error Resume Next" statement is not good actually, because it suppresses all kinds of errors if exists and you cannot rely on the results you get. Also, you have to close the unchecking error procedure by placing a "On Error GoTo 0" statement immediately after when you are satisfied with unchecking the errors.
Having said this, you can try the code below where instead of "On Error Resume Next - On Error GoTo 0" statements, the existence of XML nodes are checked....
Note that, the related XML should be placed with Excel file in the same folder.
Bookmarks