The following question discusses how to find last match in a column:
find last match in column using built in functions in excel vba
I need a way to find the last instance on an entry based on two columns.
So, find the last 'Item1' from column B and find the last '2 L' from column D. When both match, display the corresponding value from column C.
I tried using the AND function with the solution mentioned in the above questions but AND does not work with the arrays generated.
Any clues how I could get this done? Thank you!
PS: I need to do it without VBA.