Вот так, все заработало.
Вот как я открыл PPTM, который хочу закрыть позже:
Set TheNewlyOpenedTandemPresentation = Presentations.Open(TandemFileToLoadFilePath, msoFalse, msoFalse, msoTrue) 'filepath,readonly,untitled/ascopy, visiblewindow
Позже я возвращаюсь назад и просто .Закрыть
Dim ThePresentationCounter As Integer
For ThePresentationCounter = Presentations.Count To 1 Step -1
If StrComp(Presentations(ThePresentationCounter).Name, CurrentTandemFileName) = 0 Then
Presentations(ThePresentationCounter).Close
End If
Next