EXCEL QUESTION LOL
March 5, 2012 8:05 AM Subscribe
I have a data set of user activity. It records every time an activity is completed by a user, with the date and user ID attatched. I need to tally up the number of times, by user, the user completes the activity on a unique day.
So, I have the following data (basically) where the columns A=UserID, B=1 if activity was initiated and completed, 2 if activity was initiated and not completed, and C=Date
A B C
User1 1 Jan1
User1 0 Jan1
User1 1 Jan1
User2 1 Jan1
User3 1 Jan1
User1 1 Jan2
User2 1 Jan2
I want to tally up all the times where column B=1, but only have it tallied once if the corresponding date in column C is duplicated. So the results would look like this:
User1: 2
User2: 2
User3:1
Please help me make this formula. I've been fiddling around with =COUNT and =COUNTIF but I've exhausted my abilities, and I have not been able to google this
posted by Patbon to technology (13 answers total)
posted by brainmouse at 8:23 AM on March 5, 2012 [2 favorites]