I'm making a table to summarize a much larger table and I need to count the number of values from a column using criteria that can be found in another.
My data table looks for projects done look something like this:
|Project ID|Date|Person|Value|
The problem is, there are duplicate Project IDs because of multiple people that work on a specific project and countifs doesn't seem to work well here since it counts the duplicate values.
I'm trying to make a summary table where I have a distinct count of unique IDs based on the date.
|Date|Number of Unique IDs|
I found this answer here on stackexchange and was wondering if it can be done in excel?
SQL: Count distinct values from one column based on multiple criteria in other columns