Avatar

Correct answer by
Level 2

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.

View solution in original post