Sub saveexcel()
Dim rng As Range
Dim wb As Workbook
Dim Fname As Variant
Dim Path As String
Set rng = Range("A1:A211") ' range of cells to save
Set wb = Workbooks.Add
Path = "C:\" 'Open Save As form to this location
With wb
rng.Copy
.Worksheets(1).Range("A1").PasteSpecial Paste:=xlValues
' open path as set in path option box
ChDir (Path)
Application.DisplayAlerts = False
Fname = Application.GetSaveAsFilename( _
InitialFileName:="FileName", _
filefilter:="Excel97, *.xls", _
Title:="Save File To...")
If Fname <> False Then
.SaveAs Fname, 56
End If
.Close True
End With