Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Values in headers/footers

Status
Not open for further replies.

AndyEdwards

Technical User
Mar 11, 2002
9
GB
Using BO SDK does anyone know how to check the values/formulas used within the headers and footers of tables (possibly using the block/pivot/cellstructure classes).
Thanks in advance
Andy
 
this code might help you

Dim BObjects as DocumentVariable 'sets up the BObjects variable
For counter = 1 To ActiveDocument.DocumentVariables.Count
Set BObjects = ActiveDocument.DocumentVariables(counter)
tempValue = BObjects.Formula
Call MsgBox(tempValue)

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top