I have a course that has 10 tests, one test after each module. At the end of every lesson, there is a test. If the score is less that 85%, the test must be retaken. If it is failed twice, the module must be reviewed. As such I have an action in the test fail page that determines the number of times the test has been taken and if equal to 2, then it disables the "Re-Take Test" button. Not all of these exams are functioning properly. I added an action to reset the test when the "Re-Take Test" button is clicked. On-ClickReset Test[TestName]This is causing a problem because there is an action that counts the number of times the test is taken. Every time the number of times the test has been taken is presented, it reads "1". The count never adds to 2 to disable the retake test button. I beleive that the the "Reset Test" action is reseting the number of attempts as well. Now the course never knows the test has been taken twice because value for lesson test has been reset. Does the "Reset Test" action also reset the number of times the test has been presented?