Automatically naming a file using cell contents

R

Rob

How do I use the contents of a cell to automatically name a file using a
macro to populate Save As?
 
T

tjtjjtjt

Include this in your macro:
Activeworkbook.SaveAs Filenmae:=Range("A1").Value & ".xls"

tj
 
Top