I have a large table of data and I am looking to extract what is next the data out of the table.
I have something like the following:
A B C D
101 BLD WA A2
105 BLD WA B5
115 BLD WA C2
125 BLD WA G5
And I am looking to get this from the data:
101 A2
115 B5
105 C2
Basically what ever I type (101, 115, etc) I am looking to retrieve what ever is next to it in column D.
I have tried this function but I am missing something:
=IF(MATCH($A2,$A$10:$A$151216,0),$D10,0)
Any direction would be appreciated.
I have something like the following:
A B C D
101 BLD WA A2
105 BLD WA B5
115 BLD WA C2
125 BLD WA G5
And I am looking to get this from the data:
101 A2
115 B5
105 C2
Basically what ever I type (101, 115, etc) I am looking to retrieve what ever is next to it in column D.
I have tried this function but I am missing something:
=IF(MATCH($A2,$A$10:$A$151216,0),$D10,0)
Any direction would be appreciated.