I have a table (eg.- "TableA") with categories and values, like so:
Category | Value |
---|---|
A | 3 |
A | 1 |
A | 4 |
B | 1 |
B | 5 |
B | 9 |
C | 6 |
C | 5 |
C | 3 |
C | 5 |
I have another table with a list of unique categories, like so:
Category | Max Value |
---|---|
A | |
B | |
C |
The number of categories will change periodically, so I would like an ARRAYFORMULA to find the max value for each category. There are thousands of categories, in fact, so I would like to avoid using a QUERY inside of an ARRAYFORMULA for performance's sake. Any takers?