Vlookup formula
Solved/Closed
priya
-
May 3, 2010 at 08:21 AM
rizvisa1
rizvisa1
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
Related:
- Vlookup formula
- Vlookup formula in french excel - Guide
- Add/subtract & vlookup formula ✓ - Forum - Office Software
- Vlookup formula help please ✓ - Forum - Excel
- Spreadsheet formula - Articles
- Excel @ in formula ✓ - Forum - Excel
9 replies
rizvisa1
May 3, 2010 at 09:27 AM
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
May 3, 2010 at 09:27 AM
Could you please upload a sample file with sample data etc on some shared site like https://authentification.site and post back here the link to allow better understanding of how it is now and how you foresee.
vishnugj
May 3, 2010 at 09:46 AM
- Posts
- 10
- Registration date
- Monday May 3, 2010
- Status
- Member
- Last seen
- April 14, 2015
May 3, 2010 at 09:46 AM
hi, i have uploaded same file.
Please use link https://authentification.site/files/22249358/example.xls
Please use link https://authentification.site/files/22249358/example.xls
rizvisa1
May 3, 2010 at 10:03 AM
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
May 3, 2010 at 10:03 AM
This is to pull up the date. you will need to do same for other columns too
=IF(ISERROR(VLOOKUP($K4,$A:$I,2,FALSE)),"",VLOOKUP($K4,$A:$I,2,FALSE))
Let me explain this part
VLOOKUP($K4,$A:$I,2,FALSE))
$K4
I am going to look for value found in K4 (8901234 as per your sample)
$A:$I
I am going to search and locate my answer in range A:I (column A thru I). By default what i am looking for (8901234) has to be in first column of search (column A in this case)
2:
If what i am looking for (8901234) is found in first column of search range (a:i), then return the value found on same row but in the second column of range A:I, which would be column B in this case
False
i want exact match
IsError part is to handle if the match in not found, give me "" instead of default #N/A
=IF(ISERROR(VLOOKUP($K4,$A:$I,2,FALSE)),"",VLOOKUP($K4,$A:$I,2,FALSE))
Let me explain this part
VLOOKUP($K4,$A:$I,2,FALSE))
$K4
I am going to look for value found in K4 (8901234 as per your sample)
$A:$I
I am going to search and locate my answer in range A:I (column A thru I). By default what i am looking for (8901234) has to be in first column of search (column A in this case)
2:
If what i am looking for (8901234) is found in first column of search range (a:i), then return the value found on same row but in the second column of range A:I, which would be column B in this case
False
i want exact match
IsError part is to handle if the match in not found, give me "" instead of default #N/A
vishnugj
May 3, 2010 at 11:45 AM
- Posts
- 10
- Registration date
- Monday May 3, 2010
- Status
- Member
- Last seen
- April 14, 2015
May 3, 2010 at 11:45 AM
Thank you for your replies.
It works when i typed each roll number manually, however table B roll numbers has been downloaded from access database ,when i copy paste it ( even paste special values ) it does not pulls up the data's but when typed numbers manually it works.
Table A data's has been downloaded from an excel. if i copy any roll number from table A and paste in table B roll number it displays values.
Is this because roll number taken from access database ( view -> data view ), it doesn't pull data's in table B ?
Please advice.
It works when i typed each roll number manually, however table B roll numbers has been downloaded from access database ,when i copy paste it ( even paste special values ) it does not pulls up the data's but when typed numbers manually it works.
Table A data's has been downloaded from an excel. if i copy any roll number from table A and paste in table B roll number it displays values.
Is this because roll number taken from access database ( view -> data view ), it doesn't pull data's in table B ?
Please advice.
rizvisa1
May 3, 2010 at 11:51 AM
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
May 3, 2010 at 11:51 AM
Could you post the book where it is NOT pulling the data. One has to see the data to tell you the answer. there Could be space issue, non-printing character etc. So unless one see the data, hard to tell you. Post the file and paste thelink back here as you did before
Didn't find the answer you are looking for?
Ask a question
vishnugj
May 3, 2010 at 12:01 PM
- Posts
- 10
- Registration date
- Monday May 3, 2010
- Status
- Member
- Last seen
- April 14, 2015
May 3, 2010 at 12:01 PM
hi please use this link
https://authentification.site/files/22251971/example.xls
https://authentification.site/files/22251971/example.xls
rizvisa1
May 3, 2010 at 12:13 PM
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
May 3, 2010 at 12:13 PM
Yeah as I suspected. It is issue of format. The value in column A are numbers however the column J is text. You have to do one extra step to make every thing work.
This should work, if not see the detail step by step after wards
1. Select Column J
2. Goto Data and choose "Text to Column" feature
3. Choose delimited
4. Click Finish
If the above did not work, then do this step by step
1. Select Column J
2. Goto Data and choose "Text to Column" feature
3. Choose delimited
4. Click next
5. remove all check marks
6. click on next
7. click on "general"
8. click on finish
This should work, if not see the detail step by step after wards
1. Select Column J
2. Goto Data and choose "Text to Column" feature
3. Choose delimited
4. Click Finish
If the above did not work, then do this step by step
1. Select Column J
2. Goto Data and choose "Text to Column" feature
3. Choose delimited
4. Click next
5. remove all check marks
6. click on next
7. click on "general"
8. click on finish
vishnugj
May 3, 2010 at 12:28 PM
- Posts
- 10
- Registration date
- Monday May 3, 2010
- Status
- Member
- Last seen
- April 14, 2015
May 3, 2010 at 12:28 PM
sorry to trouble you again. I followed the above steps, still i could not get the datas.
Can you please look into it again ?
Can you please look into it again ?
vishnugj
May 3, 2010 at 12:31 PM
- Posts
- 10
- Registration date
- Monday May 3, 2010
- Status
- Member
- Last seen
- April 14, 2015
May 3, 2010 at 12:31 PM
sorry for the above reply. It works. i did not see it fully.
vishnugj
May 3, 2010 at 12:36 PM
- Posts
- 10
- Registration date
- Monday May 3, 2010
- Status
- Member
- Last seen
- April 14, 2015
May 3, 2010 at 12:36 PM
Thank you very much for your help. It works.
rizvisa1
May 3, 2010 at 12:49 PM
- Posts
- 4479
- Registration date
- Thursday January 28, 2010
- Status
- Contributor
- Last seen
- May 5, 2022
May 3, 2010 at 12:49 PM
glad it worked out