I've been searching online and in Excel Help but cannot find whether this is possible.
Given a list of numbers, values and a search term, I need to find the value whereby the value is greater than or equal to the search term. See the example:
Excel returns Red but it should return Orange because 15 is greater than 10.
Other desired result examples would be:
- 5 = Red (or N/A)
- 25 = Yellow
- 63 = Violet
- 15434 = Violet (or N/A)
I realise that if I sort the list in descending order and use -1
for the MATCH
[match_type]
argument, then it works okay, but, the list is over 1,000 rows and is far easier to read in ascending order.