Prevent Overwrite Warning in VBA

前端 未结 2 1979
攒了一身酷
攒了一身酷 2021-01-21 18:34

I am writing a macro to extract XML data from a Web API into a spreadsheet. The first column contains two fields delimited with a comma so I have extended the macro to insert a

2条回答
  •  一整个雨季
    2021-01-21 19:07

    source: SolutionSite

    To suppress the warnings:

    Application.DisplayAlerts = False
    

    To activate the warnings:

    Application.DisplayAlerts = True
    

提交回复
热议问题