Close Excel after running vba Macro in Qlikview

1

Macro

set obj = ActiveDocument.GetSheetObject("CH1")
obj.Export "caminho_para_salvar_arquivo"

And now I need to close Excel, I used the following command.

obj.Close caminho_para_salvar_arquivo'

And I get the error

Wrong number of arguments or invalid property assignment: "obj.Close"
    
asked by anonymous 15.10.2018 / 22:34

1 answer

2

Troubleshooting:

obj.Close
    
16.10.2018 / 20:51