vlookup sorting issue with Column Index Number

blevanto

New Member
Joined
May 17, 2010
Messages
2
I'm using a vlookup function for one of my excel tools at work. I built it to find a relevant salary value in a salary table based upon references from within the worksheet. The salary table is composed of Grades, which are in the left hand column, and Steps which are in the top row. An employee's salary is determined by which Step they've achieved within their specific Grade.

The function works like this: Suppose that an employee's basic information is in row 10. Their Grade is in Cell C10 and their Step is in cell D10 (both numeric). The salary table is in Sheet2, A1:G16. The function for this employee looks like this:

=vlookup(C10, "Sheet2"!A1:G16, (D10+1), False)

This function works properly, referencing the Grade level and Step value (which I had to add 1 to in order to make coincide with the column reference number). The problem is that when I try to sort the data, which is a useful functionality of the tool, the references within the function don't sort properly. The reference value (C10) sorts correctly, but the column reference number (D10) remains static. For example, if I resort the data and this same employee ends up in column 4, the new function would be:

=vlookup(C4, "Sheet2"!A1:G16, (D10+1), False)

Any suggestions?
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
I actually think I figured it out this morning:

Last night I wrote that post from home, so I was creating the formula from memory. When I looked at it this morning, I saw that I had inserted the cell references by clicking in the required cells and ranges. Since the lookup range was in Sheet2, the worksheet denoted that I'd returned to Sheet1 for the column index number. The forumla actually looked like this:

=VLOOKUP(D15,Sheet2!$A$2:$K$16,Sheet1!E15+1,FALSE)

For lack of anything else to try, I eliminated "Sheet1" from the forumla and it became:

=VLOOKUP(D15,Sheet1!$A$2:$K$16,E15+1,FALSE)

When I sort it now, the references appear to sort correctly. I will certainly return here if I have more problems with this formula.

Thanks.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,702
Members
448,980
Latest member
CarlosWin

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