can you map the ending for quiz results to salesforce? | Community
Skip to main content
Answered

can you map the ending for quiz results to salesforce?

  • August 22, 2023
  • 1 reply
  • 29 views

Forum|alt.badge.img

I’d like to show the ending that is displayed for quiz scores in Salesforce as part of the mapping, am I able to show the variable they receive? or just the score?

Best answer by john.desborough

@dmcmahon - not absolutely sure this works with salesforce but many systems will accept a variable from typeform

  • create a variable called v_ending and make a text variable (if you want) 
  • in your logic rules, before the user hits submit, if you have calculated which ending you are sending them towards, you can ‘replace’ the value of the v_ending variable with a logic rule like: 
    • if @score less than 10 replace v_ending with “ending A - low” 
    • if @score greater than 10 and @score less than 20 replace v_ending with “ending B - medium. 

that would give you a name/value pair that is passed with the question answers. 

might work

 

des

View original

1 reply

john.desborough
Forum|alt.badge.img+6
  • Certified Partner & Champion
  • 5272 replies
  • Answer
  • August 22, 2023

@dmcmahon - not absolutely sure this works with salesforce but many systems will accept a variable from typeform

  • create a variable called v_ending and make a text variable (if you want) 
  • in your logic rules, before the user hits submit, if you have calculated which ending you are sending them towards, you can ‘replace’ the value of the v_ending variable with a logic rule like: 
    • if @score less than 10 replace v_ending with “ending A - low” 
    • if @score greater than 10 and @score less than 20 replace v_ending with “ending B - medium. 

that would give you a name/value pair that is passed with the question answers. 

might work

 

des


Reply