Excel Save as CSV and remove quotations

5h1v

Board Regular
Joined
Oct 11, 2012
Messages
69
Hey,

I have two issues, I have written this to save my workbook as excel then save a sheet as csv using the cells in one sheet as the name of the files, I run it and select my destination but the files are not saved, secondly I need to remove the " that appear at the start and end of each line when I save the csv file any help is much appreciated.

Code:
 Journalformatting()
'
' Journalformatting macro
'

Dim IntialName As String
Dim fileSaveName As Variant
InitialName = Sheets("Journal Sheet").Range("h6") & "_" & Sheets("Journal Sheet").Range("i6") & "_" & Sheets("Journal Sheet").Range("j6") & "_" & Sheets("Journal Sheet").Range("k6") & "_" & Sheets("Journal Sheet").Range("l6")
fileSaveName = Application.GetSaveAsFilename(InitialFileName:=InitialName, _
    fileFilter:="Excel Files (*.xls), *.xls")
If fileSaveName <> False Then
    MsgBox "Save as " & fileSaveName
    Sheets("DirectUpload").Select
   fileSaveName = Application.GetSaveAsFilename(InitialFileName:=InitialName, _
    fileFilter:="CSV (*.csv), *.csv")
End If
End Sub
 
Last edited:

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,214,978
Messages
6,122,549
Members
449,089
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top