Here's a problem: given a (large) spreadsheet with userIDs in Column 1, a time/date pair in Column 2, a course code in Column 3, and a course title in Column 4: I want to produce a report showing how many unique users have taken each course. That is, given that user 12345 may have opened the same online course six times, and thus be on six rows, I want my report to show only user 12345 only once under that course ID.
I believe one way to do that would be to create another sheet with a column consisting of the course code, user name, and course title all combined into a single string, from which I could then eliminate duplicate values, but I'm wondering if there's a better way.