Hello,
I have a dataset that has rows with data that are all different. In some of
the rows the "DescID" and "PlaceID" are the same, but primarilly they are
all different. What I am trying to do is group all the rows that have the
same DescID and PlaceID. If there are multiple rows with these two colomns
being the same I need the Quantity Field to be increased by 1.
IE
ID DescID PlaceID Quantity
1 34D 81C 1
2 36P 81C 1
3 34D 81C 1
4 32F 14T 1
This should be the result after grouping them
ID DescID PlaceID Quantity
1 34D 81C 2
2 36P 81C 1
3 32F 14T 1
Any suggestions will be greatly appreciated. The data will be saved to a
SQL Database after this is accomplished.
Thanks,
Chuck