Display a description in one cell when the adjacent cell displays a unique ID

spikelovesmetal

New Member
Joined
Jul 1, 2015
Messages
7
I have a list of regulations that each have a unique ID. The next column is a text description of what each regulation refers to.

On a separate worksheet I want to be able to type in or select a reference in Cell C2 and have that description automatically displayed in the next column (C3):

C1C2C3
RequirementIDDescription
Meets safety standardsS-19The system is fire retardant
S-48The system has no exposed sharp edges

<tbody>
</tbody>

I have tried using =IF(C2="S-3",Sheet2!B4) in Cell C3,where C2 is the box I want to fill the IDs into and Sheet2!B4 is the description of what S-3 is, but as there are 300 separate IDs with unique descriptions this is taking ages.

Is there an automated way of showing the description in Cell C3 when the unique ID is typed into C2?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
you can put all your ID/Description in a table and use a vlookup(ID) to populate the Description
 
Upvote 0
description table in Columns E and F


Excel 2012
ABCDEF
1RequirementIDDescriptionIDDescription
2Meets safety standardsS-19The system is fire retardantS-19The system is fire retardant
3S-48The system has no exposed sharp edgesS-48The system has no exposed sharp edges
4S-01etc
5S-02etc etc
Sheet3



Cell Formulas
RangeFormula
C2=VLOOKUP(B2,E:F,2,0)


and copy down
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,926
Members
449,479
Latest member
nana abanyin

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