Hi everybody!
I'm working on an array to lookup categories based and create a list based on two different criteria. What i'm struggling with, is to have the results avoid duplicates, and also sorted alphabetically. All with the same array.
Currently I'm using two arrays to do the work, one for lookup, one for removing duplicates and sorting.
Here's an example on the data (is 35,000 rows in reality and growing)
Column A - Column B - Column C - Column D
June Belgium Building House
June USA Vehicle Car
May Spain Vehicle Bus
April UK Building Appartment
January Spain Building Land
February UK Vehicle Bike
February USA Etc Etc
April Belgium Etc Etc
I'm trying to pull what's on column D, based on criterias that match with columns B and C.
I'm working on an array to lookup categories based and create a list based on two different criteria. What i'm struggling with, is to have the results avoid duplicates, and also sorted alphabetically. All with the same array.
Currently I'm using two arrays to do the work, one for lookup, one for removing duplicates and sorting.
Here's an example on the data (is 35,000 rows in reality and growing)
Column A - Column B - Column C - Column D
June Belgium Building House
June USA Vehicle Car
May Spain Vehicle Bus
April UK Building Appartment
January Spain Building Land
February UK Vehicle Bike
February USA Etc Etc
April Belgium Etc Etc
I'm trying to pull what's on column D, based on criterias that match with columns B and C.