I have an Excel file with the below data example:
IssueNumber Client
100 Client 1
100 Client 1
101 Client 1
102 Client 2
102 Client 2
I want to count the number of unique IssueNumbers for each client. So the end result would be:
Client Count
Client 1 2
Client 2 1
I have a list of the clients in a separate tab from the main data, and am trying to look up using COUNTIFS, and passing the Client name as one of the criteria, but I am struggling to figure out how to count the unique issues.
This must be really simple, but it is Friday afternoon and my brain has given up!