One thing you have to correct is the source for the drop down in cell A5.
Excel won't allow you to use the names from the drop down in cell A2 because they are also valid cell references. For example, Job1 is a valid cell address (column JOB, row 1). When this happens Excel concatenates an underscore to the string:
_Job1
This tells Excel that the string is not a cell reference.
So, for the drop down list source in cell A5 use:
=INDIRECT("_"&A2)
Ok, so what result are you looking for? Do you want to return the column headers based on the selections of the drop down lists?
If I select Job2 in A2 and Person2 in A5 what result do you expect?
Bookmarks