I'm trying to count the number of unique values in a date range. My dates are in Column I, and I have a reference number (which is what I'm basing uniqueness on) in column O. For this project, I'm going to have enough data that using the entire column needs to be used.
To determine the count of unique values, I've been using the following formula:
=SUM(IF(FREQUENCY(O:O,O:O)>0,1))
To determine the total number of values in a date range, I've been using the following formula:
=COUNTIFS(I:I,">="&DATE(2017,3,1),I:I,"<="&DATE(2017,3,31))
Any help would be greatly appreciated!
Bookmarks