ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   save file as different name until cell is blank (https://www.excelbanter.com/excel-programming/430031-re-save-file-different-name-until-cell-blank.html)

Patrick Molloy

save file as different name until cell is blank
 
Sub Save_to_root()
Dim fname
dim cell as range
With ActiveWorkbook

for each cell in .Worksheets("Daily").Range("AH1:AH6").Cells
if cell.Value<"" then
fname = cell.Value & ".xls"
.SaveAs fname
end if
next

End With
End Sub


"Pam M" wrote in message
...
I have a worksheet that needs to be saved in anywhere from 1 to 6
different
locations depending on the contents of cells AH1 through AH6 (this is
where
the filenames are stored). I want the macro to save to all filenames in
this range, but I don't want a runtime error when one of the cells is
blank,
for example if there are only 4 filenames instead of 6. Presently, my
code
is

Sub Save_to_root()
Dim fname
With ActiveWorkbook
fname = .Worksheets("Daily").Range("AH1").Value & ".xls"
.SaveAs fname
End With
End Sub

Can someone help with the adjustment? Thanks, Pam




All times are GMT +1. The time now is 08:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com