I have some dataTables that have names listed with various other pieces of data that's linked to each name. At the moment there's around 1500 lines of data which will increase as the year goes on.
Some of these names are listed once. Others are listed dozens of times.
I'm after an efficient way to count how many times (occurrences) a name occurs in the datatable. For example:
Smith 3
Jones 10
Peters 1
.... as so on. This information will then be placed into another table like a summary of sorts.
But given the amount of names to sort through, the 'load' time for this is too long. I need a way to minimise processing time. Would a vector / map or something similar be useful?