Excel Vba Export Sheet As A Csv Without Losing Focus

[Solved] Excel Vba Export Sheet As A Csv Without Losing Focus | Vb - Code Explorer | yomemimo.com
Question : excel vba export sheet as a csv without losing focus of my current workbook

Answered by : daniel-ferry

'VBA function to save current worksheet as a CSV file without losing
'focus. The CSV file is saved in the same directory as the current
'workbook. The Local Separator is utilized:
Sub SaveSheetAsCSV() With ActiveSheet .Copy ActiveWorkbook.SaveAs Left(.Parent.Name, InStrRev(.Parent.Name, ".")) & .Name & ".csv", xlCSV, Local:=True ActiveWorkbook.Close False .Activate End With
End Sub

Source : http://academy.excelhero.com/ | Last Update : Fri, 08 May 20

Answers related to excel vba export sheet as a csv without losing focus of my current workbook

Code Explorer Popular Question For Vb