Oct 30, 2020 02:38 PM
I have a link field called Sale and a formula field called Status. What I want is for Status to say “For Sale” when the Sale field is empty, and for Status to say “Sold” when the Sale field is not empty. I swear I do try to search for answers in docs and previous forum discussions before asking here, and I’m so grateful for those of you who come through.
From a previous discussion, I used this formula which helped part of the way…
IF({Sale},{Sale}, “For Sale”)
I just don’t know how to add the “Sold”
Solved! Go to Solution.
Oct 30, 2020 02:45 PM
Oct 30, 2020 02:45 PM
You’re close. Try this:
IF({Sale}, "Sold", "For Sale")
Oct 30, 2020 02:47 PM
That did the trick! Thanks so much!! :slightly_smiling_face: