Hello,
I have a dataset with IDs in 1 column, next column has attributes, next has value of that attribute, the next has comment.
There are 2 types of comment: Match, Manual
As 1 row can have only 1 type of attribute, for multiple attributes, 1 ID will be in multiple rows with different attributes and corresponding values.
ID Attribute Value Comments
1 Name SD Match
1 City Paris Match
1 Job Title CMO Manual
I want to get the list of IDs which have only "Match" type of comment. Even if there is 1 attribute manual, then that ID shouldn't be there in the list.
If ID 2 has 20 rows (20 attributes) and all 20 comments are Match then get that ID in final result. If even 1 comment out of 20 is Manual, then don't bring that ID in final result.
There are 1300+ unique IDs and 5500+ rows.