I have a custom script running in my sheet, and the script basically requires values from another cell which is dependant on another cell.
Example:
| Cell 1 | Cell 2 | Cell 3 |
|---|---|---|
| 100 | Cell 1*2 |
Cell 2 + 100 |
Cell 2 will never change in the script, it just needs to be updated once when Cell 1 is created. The problem is that whenever I open the sheet again, it'll try to do my custom functions together. Cell 3 can't load because cell 2 isn't set yet. Is there a way to never have these functions run again, because re-opening the sheet will do this cycle and throw error on cell 3 (in this example, in my script it's a couple of cells).