This is my function :
=NORMINV(RAND(),$A$1,$A$2)
When I do something other, the random number recalculate again
How can I make the random number static on the 1st
This is my function :
=NORMINV(RAND(),$A$1,$A$2)
When I do something other, the random number recalculate again
How can I make the random number static on the 1st
This is how the RAND() function is meant to work in Excel. If you want a static number, you can just paste its value ;)
However, if you are open to using VBA, you can do it by performing manual calculations with your uncalculated cell in A1 for example :
sub refreshRand()
range ("A1").formula = "=NORMINV(RAND(),$A$1,$A$2)"
range ("A1").calculate
range ("A1").value = range ("A1").value
end sub
Note: If you finished your work and want to stop all calculations on ALL cells in the sheet, you can set it in Excel Settings -> Manual Calculation