I think I've found a solution for my problem, but now I'm wondering if I've also found a bug with the program. It looks to me like an acceptable workaround would be to use a template and call the "{Page.PageName}" attribute at the top of the list -- only that tag doesn't seem to work. I've tried Page.Keywords, Page.Title, and Page.Url -- all these work; but not Page.PageName or Page.Parent.PageName. What am I missing? My thought was to write some conditional logic to emit the top level page name wherever you were in the page heirarchy. I think what I've written below would basically do the trick. Aside from Page.PageName not working do you see a problem with this approach? IIF({Page.Level}='0', {Page.PageName}, {Page.Parent.PageName}) Thanks for your time. --Shawn |