vlookup help

jdunaj

New Member
Joined
Mar 22, 2013
Messages
9
Hello, I am in need of your help using the vlookup function. I use this function all the time, however on this specific report I cannot get a result. I am trying to find a specific cost associated with an invoice number. The formula I am using is =VLOOKUP(E175,A2:H145,8,FALSE) where E175 is the invoice number I am looking for in table A2:H145. I made sure that the first column in the table is the invoice# and it is in ascending order. Column 8 is the invoice amount that I need.

Please help- thank you!</SPAN>
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Yes! your link helped!! I needed to change the formula to =VLOOKUP(TEXT(E175,"00000"),A2:H145,8,FALSE)

thank you!!
 
Upvote 0
Sounds like either:
1. E175 is a Number but A2:A145 are "Numbers stored as text"
2. Vice Versa

What do these return
=ISNUMBER(E175)
=ISNUMBER(A2) - Filled down to A145


Perhaps you can use
=VLOOKUP(E175+0,A2:H145,8,FALSE)
or
=VLOOKUP(E175&"",A2:H145,8,FALSE)
 
Upvote 0

Forum statistics

Threads
1,214,986
Messages
6,122,611
Members
449,090
Latest member
vivek chauhan

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