Sub test()
For Each cell In ThisWorkbook.Sheets(1).Range("B2:B15")
Set Arg1 = Sheets(1).Range("B2:B15")
Arg2 = Sheets(1).Range("B" & cell.Row).Value
Set Arg3 = Sheets(1).Range("C2:C15")
Arg4 = Sheets(1).Range("C" & cell.Row).Value
Sheets(1).Range("E" & cell.Row).Value = Application.WorksheetFunction.CountIfs(Arg1, Arg2, Arg3, Arg4) > 1
Next
End Sub
@Kalsefar
If the value of Cells in column "E" will be true means that cell with lat & long on specific row it's duplicated, if false not.
Of course you can use a wide range, more filtering criteria adding Arg to function, and a variable instead writing a value TRUE or FALSE in the specific cell.If you want you can delete the Row, everything checking if result from function it's true or false.
Test.xlsx