Hi, do you know how to use macros or VBA at all? You can use the following code to save a file with filename from a label in a cell. Let's say you have some text in cell A1...
savename = range(“A1”).text & ".xls"
ActiveWorkbook.SaveAs Filename:=savename, FileFormat:= _
xlNormal, Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, CreateBackup:=False
You can also write a loop to do the same for an entire range of cells...