Please refer to attachment. Whenever I lookup value 116%=Error, any other value lookup is then OK?
Thanks.
![]() |
Please refer to attachment. Whenever I lookup value 116%=Error, any other value lookup is then OK?
Thanks.
The attachment.
Excel version.
You're letting cell DISPLAY (formatting) mislead you. The formula in H3 does not equal exactly 116%, but your formatting implies it does.
So two options in H2, fix the H3 value:
=VLOOKUP(ROUND(H3,2),Management!A6:B39,2,FALSE)
.. or let the VLOOKUP do a "fuzzy" match:
=VLOOKUP(H3,Management!A6:B39,2,TRUE)
Cool, thanks, will go with the =VLOOKUP(ROUND(H3,2),Management!A6:B39,2,FALSE)
One other option if nesting within a vlookup is offputting to you would be to change the formula in H3 to below. Your lookup list is based off 2 decimal points
=ROUND(SUM(L5:L6),2)
All times are GMT -7. The time now is 04:38 AM. |