Create target cell from multiple cell results ?

SteveP44

New Member
Joined
Jun 13, 2019
Messages
2
I am looking for a solution to allow me to quickly retrieve information from a reference list within excel.

Lets say I have 4 lists of information for events. These located in columns AF, AM, BF and BM

On the working area, I have 4 cells.
Cell 1 = user types "A" or "B" (Event classification A or B)
Cell 2 -= User types "F" or "M" (Event classification Female or Male)
Cell 3 = User types the entrants age

Cell 4 = to automatically retrieve the information from the list.

For example
Cell-1 Cell-2 Cell-3 Cell-4
A F 55 =AF55


Any ideas ??
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Assuming that your Cell 1, Cell 2 and Cell 3 are in A1, A2 and A3, you can use INDIRECT function in cell A4:
Code:
=INDIRECT(A1&A2&A3)

INDIRECT function will then retrieve the value from cell AF55.
 
Upvote 0
Awesome, and very simple solution. Thank you very much.

Assuming that your Cell 1, Cell 2 and Cell 3 are in A1, A2 and A3, you can use INDIRECT function in cell A4:
Code:
=INDIRECT(A1&A2&A3)

INDIRECT function will then retrieve the value from cell AF55.
 
Upvote 0

Forum statistics

Threads
1,214,386
Messages
6,119,214
Members
448,874
Latest member
b1step2far

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