indesignkat
Member
Hello,
I feel like I'm thinking too hard about this and skipping right past the easy answer, but here goes:
I have a spreadsheet of roughly 5,000 rows and around 25 columns. One of the columns contains a customer ID, another contains a transaction ID, another contains a geographic region, and another contains a word indicating the status of the transaction. One customer can have numerous transactions, of varying statuses. I am trying to get a count of unique customers with a given status in a given region.
For example:
USA 1111 500000 Active
USA 1133 500001 Closed
USA 1111 500002 Active
MEX 2222 500003 Closed
MEX 2222 500004 Active
In the data above, USA has 2 unique customers, but only 1 active unique customer. USA also has 3 unique transactions, but only 2 active unique transactions.
This data is presented in a dashboard that updates automatically whenever you click on a geographic region or a status word, refining the visuals for that region and that status. I've got all that ready, but for some reason counting unique records that meet specific criteria is escaping me.
I feel like I'm thinking too hard about this and skipping right past the easy answer, but here goes:
I have a spreadsheet of roughly 5,000 rows and around 25 columns. One of the columns contains a customer ID, another contains a transaction ID, another contains a geographic region, and another contains a word indicating the status of the transaction. One customer can have numerous transactions, of varying statuses. I am trying to get a count of unique customers with a given status in a given region.
For example:
USA 1111 500000 Active
USA 1133 500001 Closed
USA 1111 500002 Active
MEX 2222 500003 Closed
MEX 2222 500004 Active
In the data above, USA has 2 unique customers, but only 1 active unique customer. USA also has 3 unique transactions, but only 2 active unique transactions.
This data is presented in a dashboard that updates automatically whenever you click on a geographic region or a status word, refining the visuals for that region and that status. I've got all that ready, but for some reason counting unique records that meet specific criteria is escaping me.