JT,
Is this your data table or your lookup table?
I would add a column to your lookup table on the left side as a new first
column. Enter a formula or in this first column that concatenates Value 1 &
Value 2 together.
In your example, I'll assume that is your lookup table and it starts in A1
(column labels/headers in first row...data starts in A2).
1. Insert a new column before column A, pushing your data to the right one
column.
2. Enter one of the following formulas in A2:
=B2 & C2
...or...
=B2 & "-" & C2
3. Copy/fill formula down to the last row of your lookup table.
Now for your Vlookup formulas. Using your example again, but this time I'm
gonna assume this is the data table, starts in A1, column headers in first
row, data starts in A2 (Since I'm essentially using the same range for
lookup table and data table, I'll use an ambiguous range reference for the
lookup table reference so it doesn't end up being a circular reference).
1. In cell C2, enter one of the following formulas (depending on which
concatenation formula you used above):
=VLOOKUP(A2 & B2,{lookup table range},4,0)
...or...
=VLOOKUP(A2 & "-" & B2,{lookup table range},4,0)
2. Copy/fill formula down
(replace "{lookup table range}" appropriately)
(if your lookup table range reference is just cell references, make sure
they are absolute references. If it is a named reference, you shouldn't
have a problem)
HTH,
Conan