I have a column [H-Interest Code] that has a formula that generates an Interest Code (e.g., ESR: 5000 - High Quality Teams) that uses the [Academic Unit], a drop down column, [Program Code], and [Program Name] columns in the sheet. (The "H" in H-Interest Code refers to "hidden" since this column is hidden.)
Formula in [H-Interest Code]:
=LEFT([AU/Partner]@row, LEN([AU/Partner]@row)) + ": " + [Program Code]@row + " - " + [Program Name]@row
The [Program Name], in particular, may change during Stage 1 of the development process. However, once [Status] changes to "Stage 2", I want to change the cell value in [Interest Code] to capture the value in [H-Interest Code]. This way, even if [Program Name] is changed, and thus [H-Interest Code] will change, the value in [Interest Code] will NOT change.
I don't see how to set up an automated workflow that is triggered when [Status] changes to "Stage 2", and an action to change the cell value of [Interest Code] to [H-Interest Code].
Is there a way to change a cell value based on the value in another cell?