C
Craig
Is there an obvious formula to consolidate alphanumeric data across an
array of multiple rows and columns into one row of values which have
appeared at least once in the array (i.e., no duplicates)?
Example:
A B C
1 Apple Pear Orange
2 Grape Apple Pear
3 Melon Orange Grape
Result: Apple, Orange, Pear, Grape, Melon
I would also only like to show a value if it appears at least x times
across the array.
Example: (Must appear at least 2 times)
Result: Apple, Orange, Pear, Grape
Thanks for any and all help.
CB
array of multiple rows and columns into one row of values which have
appeared at least once in the array (i.e., no duplicates)?
Example:
A B C
1 Apple Pear Orange
2 Grape Apple Pear
3 Melon Orange Grape
Result: Apple, Orange, Pear, Grape, Melon
I would also only like to show a value if it appears at least x times
across the array.
Example: (Must appear at least 2 times)
Result: Apple, Orange, Pear, Grape
Thanks for any and all help.
CB