A family of Microsoft relational database management systems designed for ease of use.
Have you looked at my demo? The simple Excel worksheet which it uses, and consequently the MasterTable into which the data is imported, also has 'different records for the same Identifier', the identifier in my case being the combination of FirstName and LastName, which is not a satisfactory key in real life as personal names are not distinct, but is used as such for simplicity in my demo.
It's not a question of 'parsing' but of 'decomposition' (or more strictly speaking in the language of the database relational model 'non-loss decomposition') which is the mechanism by which a non-normalized table is replaced with a set of normalized tables.
Once you have a set of correctly normalized related tables it is then simply a question of building queries in which the relevant aggregation operator are used, COUNT, SUM etc, to return whatever summary values you wish.