I have a project I am working on where I would like to save one of the sheets in my workbook as a .csv document. Below is the code I am currently using:
Sub myExport_Click()
Dim ws As Worksheet
Set ws = Worksheets("Export")
ws.SaveAs Filename:="myExport", FileFormat:=6
End Sub
This...