Triggers for 2 end points - course completed and self declared

May 02, 2024

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 declare on a few modules and complete the others - this should trigger the self declare completion option only but I am having a few issues with working out the trigger for this to happen.

I am having difficulty with the triggers for completion and moving this to the LMS with a score or outcome to grade upon too. 

Can anyone help please?

Many thanks.

1 Reply
Sam Hill

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".