Would appreciate some help with a formula!
I ultimately need a column that either shows a count based on the difference between two dates, or a "0."
In one column, we indicate whether a job post is open. "Yes" it's open, "No" it's closed. In another column, we show the date the job was posted. In another column, we show the date an offer was made to a candidate.
I need a fourth column (called "TF") that, if there is a date in the offer column, we show the count based on the time that has passed since the job was posted and an offer was made. If there is no date in the offer column, then we show the count between when the job was posted and today's date. Finally, if the job is no longer posted ("No") and there is no date in the offer column, the count changes to "0."
I feel like I am so close, yet so far away.
COLUMN TITLES
- Column indicating the job is posted: 🚦
- Column indicating date job was opened: 📅🏁
- Column indicating date an offer was made: 📅 OFR
- Column showing count or "0": "TF"
I'm using the formula below, which satisfies the count between the date the job was posted and when an offer was made (or today's date if no offer date):
=IF([📅 OFR]@row <> "", [📅 OFR]@row, TODAY()) - 📅🏁@row
I just need to now add a way to show "0" if the job is closed AND no offer was made.
Again, I appreciate any help!