VLOOKUP Percentage Issue

ay123

New Member
Joined
Oct 21, 2020
Messages
11
Platform
  1. MacOS
I am currently trying to look up the highest maximum percentage in a range and return with the value of the cell next to the maximum percentage, so I used the formula: =VLOOKUP(MAX($C$51:$C$72), $B$51:$C$72, 1, FALSE).

However, it is giving me an error sign, saying that 'Did not find value '0.8458646617' in VLOOKUP evaluation.'

I'm suspecting that this is because of the percentage or something, as the maximum percentage is in fact 84.59%. I think that this could be because the program couldn't find the decimal number in the range, because the range is only percentages. How can I solve this? Thanks!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Update: I tried the same formula for a range of numbers which are not percentages, however, it still says 'Error: did not find value '(maximum number)' in VLOOKUP evaluation'. What can I do to fix this issue? Thank you so much.
 
Upvote 0
vlookup look at the first column of the table, your formula try to lookup col C and return value in Col B which is not how vlookup works.
try this instead

=INDEX(B51:B72,MATCH(MAX($C$51:$C$72),C51:C72,0))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top