Using Variables in Your Form
Variables let you reuse answers from earlier questions anywhere in your form. The canonical syntax is @{Question Label}.
You can type @ in supported fields to open the picker and insert a variable automatically.
Where variables can be used
Common places include:
- Question text and descriptions
- Multiple choice and matrix labels
- Button text (end screens, embed buttons, confirmation statements)
- Manual logic values and redirect URLs
- Payment amount expressions (numeric references only)
Examples and use cases
Personalized follow-up text:
Thanks @{Name}, what do you think about that?Dynamic redirect URL:
https://example.com/checkout?email=@{Email}&plan=@{Plan}Embed or end-screen button personalization:
Book a follow-up with @{Name}Using variables in equations
Equations are supported in manual logic set values and in payment amount templates.
Supported operators: +, -, *, /, and parentheses ().
Examples:
@{Subtotal} + @{Tax}
(@{Hours} * @{Rate}) - @{Discount}
@{Score} / 2For advanced flow control and redirects, see Conditional Logic.