• Resolved afternoongale

    (@afternoongale)


    Hi there,

    Instead of one result displaying, all possible results are showing. I’m not sure what the problem is. I’ve tested my formula on a smaller version of the test and it works.

    My test has 200 possible results. Could the number of possible results be the reason the test is not working as it should?

    Details:

    I have created a personality assessment that is testing for five factors: a, b, x, y, z.

    Factor a has 5 possible outcomes.

    Factor b has 2 possible outcomes.

    Factor x has 2 possible outcomes.

    Factor y has 5 possible outcomes.

    Factor z has 2 possible outcomes.

    Each unique combination of factor a, b, x, y, z has a total of 200 possible results.

    The formula I’m using looks something like this:

    scale-a = 50 OR 44 OR 28 OR 48 OR 35 OR 41 OR 57 AND scale-b =>6 AND scale-x <6 AND scale-y = 20 OR 27 OR 36 OR 14 OR 43 OR 21 OR 30 AND scale-z <6

    Again, this formula worked on a smaller version of the test, but isn’t working on my actual test.

    Please help!! Thanks

    https://wordpress.org/plugins/wp-testing/

Viewing 1 replies (of 1 total)
  • Plugin Contributor ustimenko

    (@ustimenko)

    When you have somewhere ORs:

    1. Always use “()” around them
    2. Always compare each variable in ORs: “bla = 1 OR bla = 2”

    So your formula should looks like:

    (scale-a = 50 OR scale-a = 44 OR scale-a = 28 …) AND scale-b =>6 AND scale-x < 6 …

Viewing 1 replies (of 1 total)
  • The topic ‘All results are displaying’ is closed to new replies.