View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 10,593
Default Saving the same workbook uniquely

Worksheets("W1").Copy
Activeworkbook.SaveAs Range("A1").Value

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Novicer" wrote in message
...
Can someone please help me with this task?

I have a workbook with 2 worksheets (W1, W2) that we use daily. At the end
of the day, my colleagues and I want to save W1 (only) separately.

Secondly, the file name used is the last unique number generated in that
worksheet (W1) automatically. So the file name will actually be a number
generated in that worksheet.

Is this possible?

Thanks!
Novicer.