Reputation: 1830
In SheetA I've got a set of rows that have a "Rating Of Thing" column.
The rating of thing column assigns ratings that belong to a non-numerical hierarchy. On a separate sheet (SheetB), using a pivot table, I'd like to display certain items in that sheet based on their position in that hierarchy. However, since the "Rating Of Thing" list is non-numerical, I'm getting results like the following.
I'd like to know how to create some sort of "on the go" mapping when the pivot table handles the "Rating of Thing" column so that I can find the max or highest rating for each month and display it in the table.
Link to the live sheet is here
Upvotes: 1
Views: 141
Reputation: 1
try:
=INDEX(REGEXREPLACE(""&SORTN(SORT({TEXT(MONTH(A2:A&1), "00")&"×"&A2:A, C2:C},
MATCH(C2:C, E2:E5, 0), 1), 9^9, 2, 1, 1), ".*×", ))
Upvotes: 3