Autofill Column D based on input in Column C

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to create a spreadsheet where I type a Category Number in
Column C and the name of that category automatically shows in Column D?

Specifically, I have an inventory of books for our resource center. When
the Inventory was created, it was determined that both the category number
and description should be included in every entry. (I haven't worked with it
long enough to know how necessary this double-entry might be.) But it sure
would be nice not to have to type even the beginning of the category names!

Any ideas? Thanks in advance.
 
I'd use another sheet.

Put the numbers in column A and the names in column B.

Then you can use =vlookup() to return the name.

Take a look at Debra Dalgleish's site for instructions on how to do =vlookup().
http://www.contextures.com/xlFunctions02.html

After you read Debra's site, you can modify your formula to look more like:

=if(c2="","",if(iserror(yourvlookupformula),"Missing",yourvlookupformula))
 

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

Back
Top