Referencing a cell from another worksheet

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Hi,

I'm sure this is very simple, but can someone please tell me the syntax to
access a cell from another worksheet?

e.g. =sum(F4+sheet[1]_A1)


Also, is it possible to access a cell from another /file/ ? Id imagine not
for security reasons, but thought I would ask whilst I am here.



Many thanks for your help,


Mark
 
For within the same Workbook.........

=f4+Sheet1!A1)

To retrieve from another workbook...........

=F4+'C:\_ChuckStuff\[book2.xls]Sheet1'!A1

Adjust the path and filename accordingly.....

Vaya con Dios,
Chuck, CABGx3
 
Fantastic - Thank you very much to both posters, it works a dream!


Mark


CLR said:
For within the same Workbook.........

=f4+Sheet1!A1)

To retrieve from another workbook...........

=F4+'C:\_ChuckStuff\[book2.xls]Sheet1'!A1

Adjust the path and filename accordingly.....

Vaya con Dios,
Chuck, CABGx3




Mark said:
Hi,

I'm sure this is very simple, but can someone please tell me the syntax
to
access a cell from another worksheet?

e.g. =sum(F4+sheet[1]_A1)


Also, is it possible to access a cell from another /file/ ? Id imagine
not
for security reasons, but thought I would ask whilst I am here.



Many thanks for your help,


Mark
 

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