Save xls file as cell value

  • Thread starter Thread starter Birilac
  • Start date Start date
B

Birilac

Hi, Need to save the file I am working on as the value in one of the cells
(Cell value changes)


Example. The value in cell b109 is "John Dow"

I would like to save the file as John Dow.xls without having to look at the
value in b109

Thanks for the help

Tom
 
Hi Tom

I suggest you repost this in one of the Excel newsgroups. This one is for
questions on Microsoft Access, the database application development tool
that is part of the MS Office suite.

I think the answer will probably involve something like:

ActiveSheet.SaveAs Range("B109").Value & ".xls"
 
oops sorry, meant it for the Excel group... bad fingers

Thanks
Graham Mandeno said:
Hi Tom

I suggest you repost this in one of the Excel newsgroups. This one is for
questions on Microsoft Access, the database application development tool
that is part of the MS Office suite.

I think the answer will probably involve something like:

ActiveSheet.SaveAs Range("B109").Value & ".xls"

--
Good Luck!

Graham Mandeno [Access MVP]
Auckland, New Zealand

Birilac said:
Hi, Need to save the file I am working on as the value in one of the
cells (Cell value changes)


Example. The value in cell b109 is "John Dow"

I would like to save the file as John Dow.xls without having to look at
the value in b109

Thanks for the help

Tom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top