A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Switch off the Auto Calculation Mode by Formulas tab > Calculation Options > Manual
Now, the randbetween will not change when you press enter.
If you enter randbetween formula in any cell and enter, no other cell will change. If you want to change only the cell where randbetween is entered, just press F2 in that cell and press enter, that cell will recalculate itself and no other cell will recalculate.
When your task is over, revert to Auto Calculation Mode (If you want to save your answers, you can copy and paste special as values before reverting to Auto Calculation Mode)
---------------------------------EDIT-----------------------------------------------
If you are open for VBA solution, then I have found a way at following link -
http://datapigtechnologies.com/blog/index.php/stupid-random-numbers-keep-recalculating/
You need to follow following steps -
- Save your Workbook as .xlsm
- ALT+F11
- Insert > Module
- Copy following code ans Save.
Function RandomBetween(Low As Long, High As Long)
Randomize
RandomBetween = Int(Rnd * (High + 1 - Low)) + Low
End Function
- Now, in your worksheet, you can put following code
= RandomBetween(1,13)
It will generate a random number every time without changing previous one.