Skip to main content
Inspiring
August 14, 2023
Answered

Reproducing an answer in the footer

  • August 14, 2023
  • 1 reply
  • 440 views

Hi,

I've been searching for a way to take the answer of a field and to show it in the footer of every page of the form I'm working on, but I found nothing. Is there a way to do it ?

Thank you.

This topic has been closed for replies.
Correct answer Anthony31413260hlxw

Thank you. I actually used the custom calculation script (let's say the first field is called "Text1"): : 

event.value = this.getField("Text1").valueAsString; 

I also did your method and it worked.

1 reply

Nesa Nurani
Community Expert
Community Expert
August 14, 2023

Create a text field on the first page, place it wherever you want on the page and show answer in it.

Select 'Prepare form' tool, right-click on that field and select 'Duplicate across pages'.

Anthony31413260hlxwAuthorCorrect answer
Inspiring
August 15, 2023

Thank you. I actually used the custom calculation script (let's say the first field is called "Text1"): : 

event.value = this.getField("Text1").valueAsString; 

I also did your method and it worked.