how do I reference tab labels from a worksheet in a cell in the wb

G

Guest

Trying to reference just the name of another worksheet (tab) within the same
workbook and do not want to do it in the header/footer - trying to reference
it in a cell.
 
M

Max

keri said:
Trying to reference just the name of another worksheet (tab)
within the same workbook and do not want to do it
in the header/footer - trying to reference it in a cell.

Do you mean something like this ?

In Sheet1,

In A1: =Sheet2!A1

A1 will return the contents of A1 in Sheet2,
or return zero if Sheet2's A1 is empty

We could also use in A1:
=IF(Sheet2!A1="","",Sheet2!A1)
for a cleaner look if Sheet2's A1 is empty
(instead of zeros returned)

---
 

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

Top