View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Jim Cone[_2_] Jim Cone[_2_] is offline
external usenet poster
 
Posts: 1,549
Default linking footer to a cell


You would have to use VBA code. Something like...

With ThisWorkbook.Worksheets("Robert")
.PageSetUp.LeftFooter = .Range("A1").Value
End With
--
Jim Cone
Portland, Oregon USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)



"Robert O'Neill"
<Robert
wrote in message
Is there a way to link a value in a footer to a cell of a spreadsheet.