Es posible guardar un documento en csv con un macro?
Tengo un documento que debo guardar en .xls y en .csv (delimitado por comas) en la misma carpeta, quisiera saber si esto se puede hacer con un macro, actualmente estoy tratando de agregárselo a uno que ya tengo dentro del documento que ordena y estandariza todas las fuentes en el documento, mi idea es que un solo macro haga todo esto para poder ahorrar la mayor cantidad de tiempo posible, dejo el macro que ya tengo en mi documento:
Sub FUENTENUM()
'
' FUENTENUM Macro
'
' Acceso directo: Ctrl+m
'
Cells.Select
With Selection.Font
.Name = "Calibri"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Selection.Font.Size = 12
Selection.Font.Size = 11
Columns("A:A").Select
ActiveWindow.ScrollColumn = 2
ActiveWindow.ScrollColumn = 3
ActiveWindow.ScrollColumn = 4
ActiveWindow.ScrollColumn = 5
Columns("A:R").Select
With Selection
.HorizontalAlignment = xlGeneral
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
End With
With Selection
.HorizontalAlignment = xlCenter
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = False
End With
Range("B2").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub