- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Thank you all for the suggestions. They were all helpful for me to get to my solution. The way I solved it is by,
Creating my signature section as a footer on a Master page.
I made sure the have the different subforms of my footer all within one main subform.
then I added the following FormCalc code into the Initialize instance of my main footer subform,
var curp = $layout.page ( ref ( $ ) )
var totalp = $layout.pageCount()
if ( curp ne totalp ) then
$.presence = "hidden"
endif
This setup displayed my footer only on the last page.