Count unique lines

Chants

New Member
Joined
Oct 16, 2006
Messages
7
Please can someone help.

I have two columns; A=User id's and B=date.

I would like to know how many user id's in each month, but the user id's are not unique. How do i only count the unique user id's?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Hi

Welcome to the board! One of many options:

In C2 (assume you start from row 2 with labels above?):
=COUNTIF($A$2:A2,A2)
copy and paste this down to end of range.

Then to determine how many unqiue ID's in a month:
=SUMPRODUCT(--(B1:B100>=#date#),--(B1:B100)<=#date#),--(C1:C100<2))

where #date# is iether the actual date types in, or linked to a cell if you prefer. This formula looks between dates so for one month date1 may be 01/01/06 and date2 will be 31/01/06.

If you want date specific then simply use --(B1:B100=#date#) and take out the other date conditions.

Hope this helps.

Jon :)
 
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,626
Members
449,094
Latest member
bsb1122

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top