cell data in fixed position

S

soinx

I have a worksheet designed to print a certain kind of document. In this case
it is gross composition for a product. There are several different products
which fit into this template I have designed. The amount of information in
this document varies, which gives me a problem with the bottom of the
document. I want a prdoct specific text at a fixed point at the bottom. The
footer option will do that, but it will not allow me to place cell
information in it. Using VB will only put in the correct text when I open the
document. What I would like to do is having the footer change "realtime" when
the cell, that it refers to, changes.

Anyone know if this is possible?
 
S

Stefi

What about an event macro?

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(False, False) = "A10" Then _
ActiveSheet.PageSetup.LeftFooter = Target
End Sub

Change A10 to your fixed cell!

Regards,
Stefi


„soinx†ezt írta:
 

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