Hello,
Here's an example of what I'd like to accomplish:
*The survey is set up in a way where I have to have Page 1 and Page 2 separated.
Any help or insight is appreciated!
Solved! Go to Solution.
Figured out a solution:
Under the "Calculation" column, use an if() statement to return a populated value from a previous page.
Example:
if(${Field}!='',${Field},'')
Translates to: "If 'field' is not empty (populated), then return the value stored in 'field,' else return nothing. Important to note that this should be placed under the "Calculation" column and NOT the "Default" column.
Figured out a solution:
Under the "Calculation" column, use an if() statement to return a populated value from a previous page.
Example:
if(${Field}!='',${Field},'')
Translates to: "If 'field' is not empty (populated), then return the value stored in 'field,' else return nothing. Important to note that this should be placed under the "Calculation" column and NOT the "Default" column.