Forum Discussion
LisaShapland
8 months agoCommunity Member
Triggers for 2 end points - course completed and self declared
I have created a course with two outcomes, self declared (not completed the modules due to previous experience) and completed (all modules completed). However, participants may decide to only self d...
SamHill
8 months agoSuper Hero
Hi Lisa, it sounds like you would need a variable for each module, for example M1, M2, M3. All of the variables are true/false values, initialised as "false".
If a user self-declares a module as complete, you just add a trigger to change the value of the variable, to "true", so M1 would change to "true" if the user marked it as complete or actually completed the module (last slide could trigger M1 to "true").
You would then have a trigger that runs when any of the defined variables M1, M2, M3 etc value changes. So, if M1 value changed, you would then run
Set module completed.
When M1 changes
IF M1 = true AND M2 = true AND M3 = true…etc
Note: You would need to set this same trigger for each variable that you are "listening for change".