May 18, 200520 yr How would I go about generating a random set of whole numbers between 1 and 8 as a calculation field? Thanks!
May 19, 200520 yr You can generate a single random whole number between 1 and 8 (inclusive) by: Int ( Random * 8 ) + 1 I am not sure what you mean by "set".
May 19, 200520 yr Author That's exactly what I was looking for, thanks! I was confused that Random didn't have any parameters...
Create an account or sign in to comment