Tagged Questions
The vlookup tag has no wiki summary.
4
votes
1answer
322 views
VLookup if Lookup Value Located in Column to the Right of Table Array
I have a spreadsheet set up, and it already contains a lot of data. The A column holds date objects and column B holds numerical values. I want to use Vlookup to find the numerical value and to return ...
3
votes
3answers
318 views
VLOOKUP-style range lookup in T-SQL
Here's a tricky problem I haven't quite been able to get my head around. I'm using SQL Server 2008, and I have a sparse range table that looks like this:
Range Profession
----- ----------
0 ...
2
votes
1answer
2k views
How to import data from one sheet to another
I have two different work sheets in excel with the same headings in in all the row 1 cells(a1 = id, b1 = name, c1 = price). My question is, is there a way to import data(like the name) from 1 ...
2
votes
5answers
367 views
Excel - Recursive VLookup
I recently came to know about Ctrl+Shift+Enter array formulas of Excel and currently still learning them. Coming to my problem,
SheetA:
Product Code
S1 19875
S2 19834
...
2
votes
1answer
474 views
VBA VLOOKUP Convert to Values Gives #N/A
I'm having some trouble with VLOOKUP in my VBA. Here's an example of the code I'm using:
Sub Macro15()
'
' Macro15 Macro
Dim LR As Long
LR = Cells(Rows.Count, "A").End(xlUp).Row
Range("B1:B" & ...
2
votes
3answers
321 views
Making a list through vlookup in Microsoft Excel?
I have a table in excel with three columns: name, organization, contract expiring (YES/NO).
I have 20 other sheets, one for each organization. On each sheet, I want the names of the people whose ...
1
vote
1answer
36 views
Vlookup limitations- want to transfer backwards
Can Vlookup process data backwards or is the logic always to go forwards?
Ie:
I have data that has to go both ways on another sheet. They need to be linked by the same number but the project ...
1
vote
1answer
53 views
can I make a vlookup find a certain word in a cell?
What I am trying to do is.
=VLOOKUP(C7,MODEL!A$4:B$9975,2,FALSE)
For Cell C7--- Jacket Blue Men's
What I want it to do is use a Symbol for Men's
So my original sheet has the products all ...
1
vote
1answer
147 views
Complex Vlookup/ VBA function or Macro Needed For “if contains text then vlookup”
I have a problem, http://goo.gl/i82eA this is sample data that I have with the required output. Currently I have a user defined function that is manually using many if statements to do the job but I ...
1
vote
1answer
95 views
Excel Vlookup Lastname Firstname no unique ID
Situation:
I have two sheets. I need to pull a value from sheet two, to sheet one by searching for the employee on sheet two, finding their pay, and entering that in sheet one. What complicates ...
1
vote
1answer
58 views
How to use VLOOKUP in this situation?
Here's what I'm trying to do with no success.
I have 2 sheets in a workbook. Format and TC.
Format looks something like this:
And TC looks something like this
I want to add after the last column ...
1
vote
3answers
183 views
excel vlookup with multiple results
I am trying to use a vlookup or similar function to search a worksheet, match account numbers, then return a specified value. My problem is there are duplicate account numbers and I would like the ...
1
vote
1answer
592 views
Excel VLookup from different workbook
I have 2 workbooks....OdysseyDeposit where my source data is and Civil Bank Accnt Recon which contains VLOOKUP to the OdysseyDeposit.
Here is the VLOOKUP function that I am using:
...
1
vote
1answer
380 views
Excel failing at String VLOOKUP
I have a table that looks like this
B C
43 XS 6
44 S 11
45 M 16
46 L 21
47 XL 26
48 XXL 31
I've written the formula:
VLOOKUP("S",B43:C48,2)
It's returning a value of 21. WHY?! It ...
1
vote
1answer
1k views
Excel Vlookup in macro with range
I'm trying to add a vlookup to a cell in an excel macro, however I can't seem to get the arguments of the function right nor the arguments of the range function
Please help me in stating how to write ...
1
vote
2answers
261 views
Using vlookup in Excel to match a Surname and First name and output unique ref number?
I have a spreadsheet which has 3 columns
Col A is a unique reference number
Col B is the surname
Col C is the firstname
In another worksheet I want to be able to type in a surname in cell A2, a ...
1
vote
3answers
265 views
VLOOKUP no longer works in Office 2007 - Excel
Not sure how a feature that worked fine in previous versions no longer works but I figure there must be a new way to do it that I am unaware of.
I have a simple VLOOKUP.
I have a column ...
1
vote
4answers
840 views
Find value within a range in lookup table
I have the simplest problem to implement, but so far I have not been able to get my head around a solution in Python.
I have built a table that looks similar to this one:
501 - ASIA
1262 - EUROPE
...
1
vote
1answer
832 views
Vlookup, Google Docs., Filter & Sum
I have a row with a cost, item type and a "tags" columns. I want to be able to find the total cost of all rows containing a certain "tag". I tried using VLOOKUP but I keep on getting a $0.00 return.
...
1
vote
4answers
807 views
Working out which cell Vlookup refers to
say if I see this Vlookup formula in my Excel spreadsheet:
=VLOOKUP(G37,'tb 2008'!$H$142:$M$247,6,FALSE)
Then is there an efficient way to find out which cell it is referencing? I don't want to ...
0
votes
0answers
40 views
Excel 2007 (VLOOKUP) Listing multiple cells
I am trying to make a list using LOOKUP (not a drop down), it's hard to explain but I'll give it a go :) I have a task Table(named MasterTable) with lots of different fields (Task, Person ,Time, ...
0
votes
1answer
33 views
Need to delete old SKU# and enter new SKU # onto a master sheet
This project keeps throwing new and exciting things that I am having a good deal of trouble with.
I am hoping that there is an easy solution but I am starting to suspect it may be a macro problem.
...
0
votes
1answer
70 views
Using VLOOKUP in an Excel 2007 VBA Function
I have tried hours and hours of examples but I continually get the same error of #NAME?
I need to use VLOOKUP within a VBA function and then work with the result before putting the result to a cell. ...
0
votes
3answers
46 views
Lookup Column Values
In excel, I have 3 columns, 'Group', 'Keyword', and 'Group'
The two groups are different only in the the second one has the same values twice, every time.
So I have:
Group Keyword ...
0
votes
3answers
90 views
Excel macro formula adding quotes around formular causing vlookup to not work
I am trying to write a macro, which adds a formula to a cell. For some reason, the macro is adding quotations around the cell range, which is now causing the cell to return the #name error. Any fix ...
0
votes
1answer
76 views
access excel programmatically, run a ODBC query, save data, do vlookups
I am looking for a way to automate an entire process that uses Excel & ODBC queries. I know that Excel can use to a ODBC driver to run queries against a Mysql database. But I need this query to be ...
0
votes
2answers
64 views
VLOOKUP string from table that has characters between the string
I am trying to lookup a value e.g. 123abc456 from a table but the column that I want to look up will have the format e.g. 123-abc456 or 123ab-c456.
There may be a dash between the characters in the ...
0
votes
0answers
87 views
Dropdown vlookup menu returns multiple results
The data is on one worksheet:
A B C
Name County Town
John Sussex Brighton
Eric Yorkshire York
Jim Cheshire Manchester
Liz Sussex Hove
Sarah Avon Bristol
On another sheet is where i want the data to ...
0
votes
2answers
38 views
Is there a way to create RDBMS-behavior in Excel for row column lookups?
Is it possible to lookup values in excel in the following method:
Table 1
ID | Code
-----------------
1 | I
1 | J
1 | K
2 | I
2 | J
2 | L
...
0
votes
1answer
97 views
Excel vba - convert string to number
So, I used the left function to take the first 4 characters of a string and I need to run a vlookup with it, but it won't find the match because it's looking through numbers.
I want to do this in a ...
0
votes
0answers
344 views
auto populate data from one sheet to another in excel
I am having an issue trying to complete this task. Im looking for 2 functions to complete this: I have an excel file with multiple sheets; i am trying to take data from sheet one and populate it in ...
0
votes
1answer
252 views
VBA Excel vlookup in loop problem
I have a problem with my VBA code in an excel spreadsheet containing orders. Each row contains a customer number, which I use to look up the customer email address, contained in a different sheet in ...
0
votes
1answer
82 views
lookup string from array of strings in an array of strings
I have two excel sheets in a workbook.
I have the reference table in one sheet.I need to find if a certain string exists in the cell (which has a sentence) and look up the value against that string ...
0
votes
1answer
66 views
Excel Invert VLOOKUP
I have two lists, one from 1 to 10 the other from 1 to 5. I use the VLOOKUP to search in the large list the small list and it returns the values from 1 to 5 and from 6 to 10 it returns N/A.
The ...
0
votes
1answer
86 views
How to do this vlookup in excel?
I have one Excel document with two sheets Sheet1 and Sheet2.
Sheet1 data is as below.
sno absolute name new field
--- ------------- ---------
1 abc
...
0
votes
2answers
51 views
need help with excel vlookup
=IF(N101<>"",ROUND(VLOOKUP($N101,$I$30:$U$39,12,FALSE)/(1-(U$96+U$98)),0),0)
That is the current VLOOKUP in the spreadsheet that is returning the wrong data. I didnt write it, it was on a ...
0
votes
2answers
77 views
Excel vlookup help
Using vlookup, when a match occurs, I want to display the value of column C from sheet 2 from the same row where the match occurred. The formula I came up with takes the value from column C sheet 2 ...
0
votes
1answer
173 views
Pull Excel data into Word w/ VB
I need to find specific data in Excel and copy relevant information into word fields.
1) The key is stored in one of the Word fields (say "primaryID").
2) There's a primaryID column in Excel
I am ...
0
votes
1answer
433 views
Excel cell string concatenation using IF and VLOOKUP (no VBA)
I have two columns of text in excel. The strings in both match, except that column A is indexed and repeats certain strings from B at an index (ie. the data has been categorised and repeats records ...
0
votes
2answers
697 views
Use cell value in vlookup formula
=vlookup(c2,code1,2,false)
I am using the vlookup code but I would like to use the cell value in 'c2' rather than c2 itself. The value within this cell will change, at the moment it is 'aj2'. Is ...
0
votes
1answer
178 views
VLOOKUP according to LOCATION but not the absolute name…EXCEL VBA help please!
i put the name of the files i want to perform in some cells and wrote a maco for excel to call up the file according to the location. (lets say I write 1.xls in cells Cells(2, "B"))
e.g.
A = ...
0
votes
2answers
61 views
Question regarding optimal excel function implementation
I have a question about Excel! I hope that isn't too unconventional for this site...
So I have an Excel table with several thousand rows. It is kind of setup like a db in that the first three of my ...
0
votes
1answer
99 views
VLookup in Datagridviews (VB.NET)
I have 2 datagridviews (say, DGV-A and DGV-B) having just one column each.
I want to find whether the item in DGV-A also exists in DGV-B. Basically, I am looking for a VLookup function available in ...
0
votes
2answers
1k views
Referencing variable workbooks in Excel using VBA
I have a scenario where a user creates a workbook, then this workbook (let's call it A) is assigned a variable. Later on down the line, the user creates a second workbook (let's call it B), which is ...
0
votes
0answers
114 views
External references not working
I am having problems with external references not working when the source is closed. I am using a vlookup to pull data from the source file, and when the source is open the references work. I have ...
0
votes
3answers
189 views
Postgresql vlookup
Let's say I have a table "uservalue" with the following columns:
integer user_id
integer group_id
integer value
I can get the maximum value for each group easily:
select max(value) from uservalue ...
-1
votes
1answer
178 views
haskell, how to make a small database by using tuple
here s my question, i need to construct a database representing information about one country owning county owning city, using a list of 2-tuples (i.e., pairs)
for example c1 owns c2, which owns c3, ...