VBA_Cancer
New Member
- Joined
- Nov 6, 2017
- Messages
- 17
Hi, right now I have a spreadsheet like this:
A | B
1 | 2
2 | 2
1 | 5
2 | 2
1 | 2
3 | 4
I want to return the number of duplicate coordinates for each coordinates. So an EXCEL VBA function that loops through each coordinates and msgbox how many times it's duplicated. Assume the number of rows is 6.
Ex. for (1, 2) it would return 2.
Is it possible to use countif for this? Thanks
A | B
1 | 2
2 | 2
1 | 5
2 | 2
1 | 2
3 | 4
I want to return the number of duplicate coordinates for each coordinates. So an EXCEL VBA function that loops through each coordinates and msgbox how many times it's duplicated. Assume the number of rows is 6.
Ex. for (1, 2) it would return 2.
Is it possible to use countif for this? Thanks