Hi, Ellaisa
everything you did was fine.
But as always:
If you throw a coin 10 times, you won't expect it to be a 5/5 distribution.
If you throw it 100 times, you won't expect a 50/50 distributiion, but will be nearer to a 50%/50%.
I just tested:
40 times with randnumber=rand(1,2): 19 times 1, 21 times 2
40 times with randnumber=rand(1,100): 18 times 1-50, 22 times 51-100
To be able to finetune a distribution survey, I prefer the following:
1. create your random number : r1=rand(1,100)
2. The relevance of your 2 scenarios is: r1<51, resp. r1>50.
If you see that the distribution gets unbalanced, just change the relevance equation (e.g. too much "2") like
scenario 1: r1<31
scenario 2: r1>30
or even (you only need "2")
scenario 1: r1==0
scenario 2: r1>0
You can do this, even if the survey is activated.
Best regards
Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
The topic has been locked.