![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Mar 2002
Location: Central NY(not the park)
Posts: 14
|
Hello Again,
I am stumbling through what I thought to be a simple LOOKUP function,but am having some trouble with 1 number. I reference 2 columns H - Employee Numbers and I - Employee Name. When employye Number is enrered into B3 Employee's Name comes up in C4. Some numbers start with 0 and I had trouble with these at first, but corrected that with cell formatting, which is CUSTOM-000. The name that is giving trouble is 119 whenever this number is entered it gives me the name in the cell above the correct one.??? My function is =LOOKUP(B3,H6:H39,I6:I39) any help would be great. THANKS! |
|
|
|
|
|
#2 | |
|
Board Regular
Join Date: Apr 2002
Location: Kissimmee, Florida
Posts: 384
|
Quote:
Your list is probably not quite incremental in which case it picks up the nearest in incremental blocks add the following bit and Excel will only accept Exact matches. =VLOOKUP(B3,H6:H39,I6:I39, FALSE) If this hasn't done it let us know.
__________________
Hope This Helps. Sean. Digest of Homes WinXP, XL XP |
|
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,318
|
Quote:
The underlying format of B3 must be the same as that of the lookup range H6:H39. You need to resolve that first. Moreover, The values in H6:H39 must be in ascending order: ...,-2, -1, 0, 1, 2, ..., A-Z, FALSE, TRUE; otherwise, LOOKUP may not give the correct value. An alternative would be: =INDEX(I6:I39,MATCH(B3,H6:H39,0) which also requires that the format issue is resolved. [ This Message was edited by: Aladin Akyurek on 2002-05-03 16:21 ] |
|
|
|
|
|
|
#4 |
|
New Member
Join Date: Mar 2002
Location: Central NY(not the park)
Posts: 14
|
The INDEX function worked exactly as mine did previously, all numbers work fine except for 119. Both B3 and H6:H39 are formatted the same.
Scott J. |
|
|
|
|
|
#5 |
|
New Member
Join Date: Mar 2002
Location: Central NY(not the park)
Posts: 14
|
Addition to: all numbers in H6:H39 are in ascending order, but 119 is the first true 3 digit numer, all previous numbers begin with 0. Any Help??
|
|
|
|
|
|
#6 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,318
|
Quote:
You can make that 119 if it's a value that shows up in B3 text by using B3&"" Aladin [ This Message was edited by: Aladin Akyurek on 2002-05-03 16:22 ] |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|