View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
[email protected] simonclivehughes@hotmail.com is offline
external usenet poster
 
Posts: 16
Default Need to save/write ranges to a workbook

Actually, I was able to do it with the following:

Sub DoFileRead()
Dim fileReadName

Application.GetOpenFilename ("Excel Files (*.xls), *.xls")
If fileReadName < False Then
ActiveWorkbook.SaveAs Filename:=fileReadName
End If
End Sub

Many thanks for all the help!