how do I connect cells on two pages?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I connect a cell from a masterpage to another cell on a second page?
The code that I was using, =Master!B4 , works, but shows a number zero on the
second page. I do not want it to do that. Any suggestions?
 
Excel isn't very elegant about referencing blank cells.

Try something like this:
=IF(Sheet2!A1="","",Sheet2!A1)

Does that help?
***********
Regards,
Ron

XL2003, WinXP
 
marketing123, here is one way,

=IF(Master!B4="","",Master!B4)

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
 
Back
Top