The scenario...
- The Excel file is generated from dynamically loaded data into an Excel table.
- One column has a value that is associated with a group of records.
- The group of records can range from a single record to dozens.
- A second column has a variety of meta-data values.
- Next column contains a formula to identify if a given meta-data value exists in the rows of the group. EXAMPLE: [NON-HUMANS] =IF(COUNTIF(RANGE,"<>HUMAN")>0,"YES","NO")
NOTE - The group value correlates to a UUID of which there are hundreds, for the sake of simplifying the sample data, I have used ALPHA, BRAVO, CHARLIE, ETC.
The issue - as the number of group records varies, I need to define the range in the formula based on the GROUP column value.
SAMPLE DATA SET
GROUP,MEMBERS,SPECIES
ALPHA,Scooby,DOG
ALPHA,Shaggy,HUMAN
ALPHA,Velma,HUMAN
ALPHA,Daphne,HUMAN
ALPHA,Fred,HUMAN
BETA,Alvin,CHIPMUNK
BETA,Simon,CHIPMUNK
BETA,Theodore,CHIPMUNK
CHARLIE,Superman,HUMAN
CHARLIE,Batman,HUMAN
CHARLIE,Robin,HUMAN
CHARLIE,Wonder Woman,HUMAN
CHARLIE,Aquaman,HUMAN
CHARLIE,Wonder Dog,DOG
DELTA,Spider-Man,HUMAN
DELTA,Ice-Man,HUMAN
DELTA,Firestar,HUMAN