Kerry,
The Location property of the H/VPageBreak objects returns a Range
object reference to the location of the page break. From that,
you can use the Address property to get the address. The range
returned by Location is immediately below the page break.
Debug.Print ActiveSheet.HPageBreaks(1).Location.Address
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
Kerry said:
How do I use this property to find the address of automatic
page breaks? Excel VBA help doesn't do a great job explaining
this one.