I am trying to lookup a value when two columns are the same. To start, I have a drop down menu. The users selects which item name they want and when they click it, it enters into cell H26. Next, I have a table. There are 4 columns : NAME, LOGIC, TITLE to DISPLAY, VLOOKUP.
Cells E39-E43is the NAME column. So pretty much when the user select from the drop down menu an item list those being Modules 1-7, Modules 8-12, etc., the label gets inserted into cell H26. The Logic column has an IF statement that will either put “1-7”, “8-12”, etc. or leave it blank.
I am using the Title to Display column to reference. Below is the table. I am trying to use the vlookup column and in one cell be able to lookup and match when a cell in the Logic column matches the cell in the Title to display. When a match occurs, I need the value, whether its 1-7, 8-12, 13-16 etc. Can this be accomplished using one cell and with the least complicated logic. The front end program doesn’t respond well to perplexed and elongated excel functions. Thank you for your time
1-7
, you want1-7
in the VLOOKUP column. If17-13
is in the 4th cell, you want17-23
in the VLOOKUP column. If all cells are blank in LOGIC, you want a blank. If there are more than one cell in LOGIC that matches TITLE to Display, you want the first match. LOGIC cannot contain something else than blank that doesn't match TITLE to Display. Are all those right? – Jerry