Hello folks:
I have the following spreadsheet:
I am trying to remove all duplicate entries and leave only the earliest occurence on column Time, so my data would look like this:
I have thousands of rows so I can't really do it by hand, the Remove Duplicates command does not really work for me.
Any help will be appreciated.
I have the following spreadsheet:
Code:
[TABLE="width: 514"]
<tbody>[TR]
[TD]Where[/TD]
[TD]Who[/TD]
[TD]Time[/TD]
[TD]CardNum[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Smith, Brian[/TD]
[TD="align: right"]6:52:00[/TD]
[TD="align: right"]2498[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Smith, Brian[/TD]
[TD="align: right"]8:33:00[/TD]
[TD="align: right"]2498[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Smith, Brian[/TD]
[TD="align: right"]7:38:00[/TD]
[TD="align: right"]2498[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Doe, John[/TD]
[TD="align: right"]11:59:00[/TD]
[TD="align: right"]41880[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Doe, John[/TD]
[TD="align: right"]17:23:00[/TD]
[TD="align: right"]41880[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Miller, Juan[/TD]
[TD="align: right"]6:54:00[/TD]
[TD="align: right"]13350[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Miller, Juan[/TD]
[TD="align: right"]14:26:00[/TD]
[TD="align: right"]13350[/TD]
[/TR]
</tbody>[/TABLE]
I am trying to remove all duplicate entries and leave only the earliest occurence on column Time, so my data would look like this:
Code:
[TABLE="width: 514"]
<tbody>[TR]
[TD]Where[/TD]
[TD]Who[/TD]
[TD]Time[/TD]
[TD]CardNum[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Smith, Brian[/TD]
[TD="align: right"]6:52:00[/TD]
[TD="align: right"]2498[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Doe, John[/TD]
[TD="align: right"]11:59:00[/TD]
[TD="align: right"]41880[/TD]
[/TR]
[TR]
[TD]Building 2 Entry A[/TD]
[TD]Miller, Juan[/TD]
[TD="align: right"]6:54:00[/TD]
[TD="align: right"]13350[/TD]
[/TR]
</tbody>[/TABLE]
I have thousands of rows so I can't really do it by hand, the Remove Duplicates command does not really work for me.
Any help will be appreciated.