Search code examples
excelaveragevlookup

Vlookup not giving correct results while using average of three equal numbers


enter image description hereI'm facing a unique situation. I have a table with two columns - GM% and Payout%. While applying Vlookup on a value that's been derived by an average of three equal numbers, I'm getting #N/A even though when I use vlookup on the individual numbers, I get perfect results. Any idea what I'm doing wrong?enter image description here


Solution

  • You have to round the result of the AVERAGE to the precision of your base data (GM%):

    = ROUND(AVERAGE(F2:H2),2)