It's pretty straight forward. If a certain cell, such as A1, is the value "0", I would like A2 to contain an arbitrary value. Otherwise, I would like the user to be able to enter their own value. The first part is easy:
A2=IF(A1 = "0", "value", "")
However, if A2 is empty, and the user goes to edit the value, Excel presents the formula itself to be edited.
Is there any way around this?