A7~~=RANDBETWEEN(1,54)
B7~~=IF(A7<19,RANDBETWEEN(1,19),IF(AND(A7>18,A7<37),RANDBETWEEN(20,91),IF(A7>36,RANDBETWEEN(92,215),"")))
What I would like to accomplish is displaying a Word or some variable characters along side the random numerical number chosen in B7.
For Example:
If A7<19 display 'Single' and the random number between 1-19
If A7>18 But <37 display 'Double' and the random number between 20-91
If A7>36 display 'Triple' and the random number between 92-215.
B7~~=IF(A7<19,RANDBETWEEN(1,19),IF(AND(A7>18,A7<37),RANDBETWEEN(20,91),IF(A7>36,RANDBETWEEN(92,215),"")))
What I would like to accomplish is displaying a Word or some variable characters along side the random numerical number chosen in B7.
For Example:
If A7<19 display 'Single' and the random number between 1-19
If A7>18 But <37 display 'Double' and the random number between 20-91
If A7>36 display 'Triple' and the random number between 92-215.