I have a formula to count the number of contacts based on the source column. That column is shown in an attached photo and the source is selected via a drop down menu in that column. I am focusing on the Zillow and Zillow-Listing direct contracts.
This is the formula I use to count Zillow contracts: =COUNTIFS({Master Transaction Data Range 2}, "Zillow", {Master Transaction Data Range 3}, AND(@cell >= DATE(2021, 1, 1), @cell <= DATE(2021, 3, 31)), {Master Transaction Data Range 4}, "Closed")
The data range 2 is the source column, data range 3 is a date column that indicates date closed and data range 4 is a status column.
With that, this formula correctly counts the contracts as shown in the photo as 3. Then, when I use this formula for Zillow-Listing Direct, it also returns a count of 3 when it should return a count of 1 (reference photo).
=COUNTIFS({Master Transaction Data Range 2}, "Zillow-Listing Direct", {Master Transaction Data Range 3}, AND(@cell >= DATE(2021, 1, 1), @cell <= DATE(2021, 3, 31)), {Master Transaction Data Range 4}, "Closed")
What is wrong and why is it doing this?