Linking Cells with Certain Information

KTINVA

New Member
Joined
Nov 25, 2016
Messages
1
Is it possible to enter a number in one cell and have the cells in the adjacent row automatically fill in with additional information (text and numbers)?

Example:
1ABCD
2100Cat8 lbs.5
3101Dog15 lbs.12
4102Fish4 oz.2
5103Rabbit7 lbs.27
6104Snake1 lb.6

<tbody>
</tbody>

If I enter "102" in a cell on another sheet in the same document I would like for the next cell to read "Fish", the next cell in the row to say "4 oz.", and the next to be "2".
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.

BQardi

Active Member
Joined
Aug 30, 2016
Messages
483
You could just use VLOOKUP:
In "Sheet2" or whatever your lookup sheet is called, f.ex. enter 102 in A1 and information will show in B1, C1 and D1:
Assuming your lookup data is in Sheet1:
Code:
Cell B1 formula: =VLOOKUP(A1,Sheet1!A:B,2,FALSE)
Cell C1 formula: =VLOOKUP(A1,Sheet1!A:C,3,FALSE)
Cell D1 formula: =VLOOKUP(A1,Sheet1!A:D,4,FALSE)
 
Upvote 0

live_excel

New Member
Joined
Nov 23, 2016
Messages
42
Hello,

Here's i did this formula for you.Please try this and let me know.


1ABCDG1 ---> 102
2100Cat8 lbs.5
3101Dog15 lbs.12 =VLOOKUP(G1,B1:E6,2,FALSE)
4102Fish4 oz.2
5103Rabbit7 lbs.27
6104Snake1 lb.6



<colgroup><col span="5"><col><col></colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,195,601
Messages
6,010,654
Members
441,558
Latest member
lambierules

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
Top