Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. //Last Update: 3/14/2019
  2.  
  3.  
  4.  
  5. //*******************************
  6. //Online/App Check In - BEGIN
  7. //*******************************
  8.  
  9. //if QID 1311 answered "Online Check-In" or "App", then show all but QID 1351 (conditional based on QID 1341) in the Online/App Check In section.
  10. ifQ(1311)
  11. .answered(2,3)
  12. .appear(Q(1321), Q(1331), Q(1341), Q(1361), Q(1371), Q(1411))
  13.  
  14. //if QID 1311 answered "Walk-In", then hide all questions in the Online/App Check In section.
  15. ifQ(1311)
  16. .answered(1)
  17. .disappear(Q(1321), Q(1331), Q(1341), Q(1361), Q(1371), Q(1411))
  18.  
  19. //if QID 1341 answered YES and QID 1311 answered "Online Check-In" or "App", then show QID 1351.
  20. ifQ(1341)
  21. .answered(1)
  22. .andifQ(1311)
  23. .answered(2,3)
  24. .appear(Q(1351))
  25.  
  26. //*******************************
  27. //Online/App Check In - END
  28. //*******************************
  29.  
  30.  
  31.  
  32.  
  33. //*******************************
  34. //The Kick Off - BEGIN
  35. //*******************************
  36.  
  37. //if QID 1311 answered "Online Check-In" or "App" AND the shop date is after 3/31/2019, then disappear QID 1251.
  38. ifQ(1311)
  39. .dateAfter("2019-03-31")
  40. .answered(2,3)
  41. .disappear(Q(1251))
  42.  
  43. //*******************************
  44. //The Kick Off - END
  45. //*******************************
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement