View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
macronewbie macronewbie is offline
external usenet poster
 
Posts: 2
Default Automatically Saving created FILE

Hi,

Just would like to ask help on how to automatically save a created file just
by the use of command button.

I have below macro code:
Sub CSVFILE()
Dim sh As Worksheet

ActiveSheet.Copy
Set sh = ActiveSheet

On Error Resume Next
sh.Buttons.Delete
sh.Rows("1:2").Delete
On Error GoTo 0
End Sub

I want to "save as" the generated new workbook automatically when I click
the command button to create the new wokbook. Is this possible? THANKS!