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?

Signature
marketing123
Ron Coderre - 06 Aug 2007 18:28 GMT
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
> 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?
Peo Sjoblom - 06 Aug 2007 18:29 GMT
=IF(Master!B4="","",Master!B4)
will not show a zero if Master!B4 is empty

Signature
Regards,
Peo Sjoblom
> 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?
Paul B - 06 Aug 2007 18:31 GMT
marketing123, here is one way,
=IF(Master!B4="","",Master!B4)

Signature
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
> 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?