Currently facing a problem with duplicate datas.
<tbody>
</tbody>
So i would like to set those invoice numbers in the Unique No. column, those with duplicates a value of 1, (first entry of 1000123456 to 1, the rest a value of 0). Other invoice numbers with no duplicates (1222444444, 1444222222, etc to 1)
I tried using excel's sort and filter function but since my data has gaps in between, the rows without any data was set to 0 as well.
My goal is to find the number of Invoices issued without double counting the duplicates.
Any help is appreciated. Thanks in advance
Invoice no. | Unique No. | Item Desc | |
1000123456 | 1 | Pliers | |
1000123456 | 0 | Nail | |
1000123456 | 0 | Hammers | |
1222444444 | 1 | Paper | |
1444222222 | 1 | Nail | |
1223456789 | 1 | Nail | |
1000123456 | 0 | Planks | |
1112223334 | 1 | Saw | |
1112223334 | 0 | Hammer |
<tbody>
</tbody>
So i would like to set those invoice numbers in the Unique No. column, those with duplicates a value of 1, (first entry of 1000123456 to 1, the rest a value of 0). Other invoice numbers with no duplicates (1222444444, 1444222222, etc to 1)
I tried using excel's sort and filter function but since my data has gaps in between, the rows without any data was set to 0 as well.
My goal is to find the number of Invoices issued without double counting the duplicates.
Any help is appreciated. Thanks in advance