Hi lenze
Try this
Sub TryThis()
With ActiveSheet.PageSetup
.LeftFooter = Range("A1")
.RightFooter = Range("A2")
End With
End Sub
OzGrid Business Applications
Oops, you said another sheet.
Sub TryThis()
With ActiveSheet.PageSetup
.LeftFooter = Sheets("Sheet1").Range("A1")
.RightFooter = Sheets("Sheet1").Range("A2")
End With
End Sub
OzGrid Business Applications
where and how would I entry these commands
question here...exactly where and how would I entry these commands ? in the basic editor ?
thank you !
Re: where and how would I entry these commands
Thanks Dave: It worked great
Mark: I entered the code in the Sheet Object Module, using Named Ranges for Cell References. It runs when you select an active cell on the sheet.