In Google Sheets, there are multiple methods to convert a cell formula into its output value, but I have not found a function which performs this.
For example, I'd like to run:
=FORMULA2VALUE(RAND())
which would produce a random number and immediately make that number not only the displayed contents of the cell, but the true contents of the cell as well, preventing the cell from immediately overwriting itself with a new random number on the next trigger of RAND()
(which is the next change to the sheet).
Does such a function exist?