Fill in the corresponding cells

randr

New Member
Joined
Mar 7, 2018
Messages
2
Hello everyone!

I would like to fill in corresponding cells with the values I have.
an example:
I have a row from 1 to 10
Below of each number i have a set of numbers

1-2-3-4-5-6-7-8-9-10
55-74-7-8-6-45-2-77-94-10
and lower i have rows of 6 from original 10 row
1-3-5-8-9-10
How to auto fill each corresponding number with the original table?
Thank you in advance!
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
If you are asking to put the number that corresponds to your original table and values just use the hlookup formula.

I don't know your cells, but here is one example

Code:
=HLOOKUP(A10,$A$1:$J$2,2,0)

This will lookup what ever value is in A10 from the list in A1-J2 and give you the value from Row-2.

So put this formula in and copy over to your other cells, that would assume your 2nd set of values is in A9.
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,389
Members
449,222
Latest member
taner zz

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