Our bookkeeper has an Excel template she uses for creating new purchase orders. She wants to make it so that when she creates a new spreadsheet from this template it will generate a new random number in the purchase order number cell only once.
To minimize the chances of two order numbers being the same I was thinking about using a timestamp as a seed rather than an actual random number, like this: =(NOW()-DATE(1970, 1, 1)) * 864 (I know this won't make a proper Unix timestamp, as that doesn't matter, I just wanted it to be shorter).
My main question is, how can I put a formula into a cell and make sure it evaluates only one time, when a new file is created from this template?