How would I pass check box value (check/unchecked) to display 'pass/fail' on a summary page?

Hello

I am trying to create a check box system linked to a list that will display pass/fail depending on the checkbox checked status. I tick ‘yes/no’ depending on whether a person has heard a sound or not. if I click yes, I want (on a summary page) the word ‘pass’ to display beside the relevant sound name (e.g. beep1 - pass). How would I associate a ‘yes’ checked box to display ‘pass’ on the summary page?

This is what I have so far :

any help appreciated - thanks!

Probably the simplest way would be to store all the boolean data which is whether or not someone heard a sound into an array. At the completion of your testing you loop through the array and for each “true” you set a text variable that corresponds to that specific sound to “pass”, otherwise you set the same text variable to false. This obviously would require some more set-up than what you have there. You need to create a text variable for each “sound” you want to test against. You then need a widget with a text block for each one of those variables, you need to link the variables to whether or not the user has checked the box or not etc store that data (checked or not) as a boolean variable and then use that info to set the corresponding text variable to “pass” or “fail”. Depending on how you are getting this input would determine the specifics of the code you would need to create. I would need to see the set-up for answering these questions and how the user inputs the answer.