Skip to main content
Solved

If Empty, If Not Empty Formula

  • October 30, 2020
  • 2 replies
  • 34 views

Forum|alt.badge.img+14

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”

Best answer by Justin_Barrett

You’re close. Try this:

IF({Sale}, "Sold", "For Sale")

2 replies

Justin_Barrett
Forum|alt.badge.img+21
  • Inspiring
  • Answer
  • October 30, 2020

You’re close. Try this:

IF({Sale}, "Sold", "For Sale")

Forum|alt.badge.img+14
  • Author
  • Known Participant
  • October 30, 2020

You’re close. Try this:

IF({Sale}, "Sold", "For Sale")

That did the trick! Thanks so much!! :slightly_smiling_face: