i'm trying to simulate skewed coin toss on google sheets. heads=95% tails =5% i was trying this but it gives error. =PROB(1,2,{0.95,0.05})
Just use =Rand() in one of the cells and then use =If([cell reference]<0.05, 0, 1) to create a boolean for the heads result. If the second cell is 1 then its heads. You can hold the F9 key to simulate trials.