I am running a report based off a request intake sheet that pulls the 1st choice date and 2nd choice date selected on a form request. This report will be put onto a dashboard and show only available dates (dates that have not been selected as either a first choice or second choice date on a form submission). I have created the following formula to mark the status as either overbooked, booked, or available.
=IF((COUNTIF({Date 1}, Date@row) + COUNTIF({Date 2}, Date@row)) > 1, "Overbooked", IF((COUNTIF({Date 1}, Date@row) + COUNTIF({Date 2}, Date@row)) > 0, "Booked", "Available"))
Then, I have used the report to only show 'Available'. SO, when a new form is submitted, both the first and second choice dates no longer show up in the report.
How can I modify this formula to only mark first choice dates as booked, and second choice dates remain as 'Available' along with dates that have not yet been selected? In other words, if someone selects 10/21 as a first choice date and 10/22 as a second choice date, I only want the first choice date to be marked as 'Booked', and the second choice date to remain as 'Available.'
I hope this makes sense!