VBA Saving single sheet as CSV (not whole workbook)

后端 未结 3 478
悲&欢浪女
悲&欢浪女 2020-12-10 11:02

I appreciate there are lots of entries like save individual excel sheets as csv and Export each sheet to a separate csv file - But I want to save a single worksheet<

3条回答
  •  失恋的感觉
    2020-12-10 11:51

    You just need to save the workbook as a CSV file. Excel will pop up a dialog warning that you are saving to a single sheet, but you can suppress the warning with Application.DisplayAlerts = False.

    Don't forget to put it back to true though.

提交回复
热议问题