Excel List functions and linking cells

G

Guest

I am creating a document register with drop down lists for Document Revision
No's. I need to use a function if there is one whereby for each revision I
can type a note in the cell and also the date in adjacent cells that is
linked to the drop down lists that can be recalled at any time.

For example, For revision 01, a certain note I wrote will be shown and then
if I drop down to revision 2, a different note and date is shown. Is there a
way I can do this so that overtime I can recall any of the drop down list
values and find the note I wrote next to it??

I already know how to create a list but I need to know how to link that list
with the adjacent cells I guess..

Any suggestions will be gratefully received.
Thanks
 
S

Stephen

Andys Mitten said:
I am creating a document register with drop down lists for Document
Revision
No's. I need to use a function if there is one whereby for each revision
I
can type a note in the cell and also the date in adjacent cells that is
linked to the drop down lists that can be recalled at any time.

For example, For revision 01, a certain note I wrote will be shown and
then
if I drop down to revision 2, a different note and date is shown. Is
there a
way I can do this so that overtime I can recall any of the drop down list
values and find the note I wrote next to it??

I already know how to create a list but I need to know how to link that
list
with the adjacent cells I guess..

Any suggestions will be gratefully received.
Thanks

I'm a bit confused by what you ask, but I think you need to use VLOOKUP.
This would take the value from a cell, look it up in the first column of
your list and return the corresponding data from the second (or subsequent)
column of the list.

To get you started, suppose the list is in A1:C10 (notes in column B and
dates in column C), and the cell with the revision number is E20.

In (say) F20 this formula
=VLOOKUP(E20,A1:C10,2,0)
will return the corresponding note, and in (say) G20 this one
=VLOOKUP(E20,A1:B10,3,0)
will return the corresponding date.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top