sorry, let me get some more detail here. The results slide is set up to execute advanced actions on enter. Here is the advanced action conditional action below. This is just a system variable which I thought was the total score achieved. The "else" statement is just the opposite of the success actions (if greater or equal to 91).

Here is how the quiz preferences pass/fail area is set-up:

Here is the first question slide. They are all set-up the same way except all the other 10 questions only have 9 points assigned to them.

I hope this clarifies things a bit? thank you!
Your issue may be with the variable that you've chosen to use in your condition. This often happens because the Description fields on the Captivate system variables are woefully inadequate sometimes in telling you exactly what the variable does. They should be a lot more helpful and unambiguous, but software developers tend to think "everybody knows that..." and they hate writing anything but code, so they are notorious for leaving out detail.
My suspicion is that cpQuizInfoTotalQuizPoints is NOT the total number of quiz points scored by the learner. It's the total number of points available to be scored in the quiz (i.e. in all quiz question slides). Note also the variable cpQuizInfoTotalProjectPoints, which is the total number of points that could be scored across all interactions in the project, including interactive objects on non-quiz slides.
The variable cpQuizInfoPointsscored is the one that would tell you the number of points the learner actually scored. But going with this variable would mean you'd have to keep updating your Advanced Action condition every time the number of points in your lesson changed. I would be far easier to just use cpQuizInfoPassFail and check for a 0 or 1 to see whether or not the user failed (0) or passed (1) the lesson.
Try changing the variable in your condition and then see if things improve.