I have a file with many rows of data and I only need to pick one row for each account number, how do I remove the duplicate rows (I basically want to pick the first row where the account number appears and remove the ones that follow). A snapshot of the data is below, I would basically only want to have two rows in this example; one for 1703 and another for 1739.
<colgroup><col><col><col></colgroup><tbody>
</tbody>
Thanks in advance
1703 | 93271.59 | 31/05/2015 |
1703 | 93271.59 | 31/05/2015 |
1703 | 93271.59 | 31/05/2015 |
1703 | 93271.59 | 31/05/2015 |
1739 | 140053 | 31/05/2015 |
1739 | 140053 | 31/05/2015 |
1739 | 140053 | 31/05/2015 |
1739 | 140053 | 31/05/2015 |
1739 | 140053 | 31/05/2015 |
<colgroup><col><col><col></colgroup><tbody>
</tbody>
Thanks in advance