Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default How do I make a master look-up list in Excel?

I would like to make a master list in excel for all of my other worksheets to
be able to access to save myself a bunch of typing time. Example, if i have
in my master list

Column A Column B Column C
Code Product Price
1020.100 Permit A 150.00
1020.200 Permit B 200.00

i would like to be able to simply type 1020.100 into column A and have
column's B and C filled in. Is this possible, and if it is, how do i go about
getting it set up?
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4,624
Default How do I make a master look-up list in Excel?

One way:

Say your master list is in a worksheet named Master. Then in your
working sheet:

A1: 1020.100
B1: =VLOOKUP(A1, Master!A:C,2,FALSE)
C1: =VLOOKUP(A1, Master!A:C,3,FALSE)

In article ,
Paco3517 wrote:

I would like to make a master list in excel for all of my other worksheets to
be able to access to save myself a bunch of typing time. Example, if i have
in my master list

Column A Column B Column C
Code Product Price
1020.100 Permit A 150.00
1020.200 Permit B 200.00

i would like to be able to simply type 1020.100 into column A and have
column's B and C filled in. Is this possible, and if it is, how do i go about
getting it set up?

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default How do I make a master look-up list in Excel?

but will i be able to pull up the information if it is in a different
workbook and that workbook is not opened?

"JE McGimpsey" wrote:

One way:

Say your master list is in a worksheet named Master. Then in your
working sheet:

A1: 1020.100
B1: =VLOOKUP(A1, Master!A:C,2,FALSE)
C1: =VLOOKUP(A1, Master!A:C,3,FALSE)

In article ,
Paco3517 wrote:

I would like to make a master list in excel for all of my other worksheets to
be able to access to save myself a bunch of typing time. Example, if i have
in my master list

Column A Column B Column C
Code Product Price
1020.100 Permit A 150.00
1020.200 Permit B 200.00

i would like to be able to simply type 1020.100 into column A and have
column's B and C filled in. Is this possible, and if it is, how do i go about
getting it set up?


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4,624
Default How do I make a master look-up list in Excel?

Did you try it?

In article ,
Paco3517 wrote:

but will i be able to pull up the information if it is in a different
workbook and that workbook is not opened?

  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 3
Default How do I make a master look-up list in Excel?

sorry, but i'm new to this so you'll have to dumb it down just a touch. i
tried doing it that way but it isn't working and i can't figure out how to
type it in correctly.

"Don Guillett" wrote:

Your ORIGINAL post should have mentioned another workBOOK. The easiest way
to do this is to make a defined name range in the destination workbook that
refers to the workbook/worksheet/range in the source workbook.
='[workbook.xls]sheet name'!$D$1:$F$23

--
Don Guillett
SalesAid Software

"Paco3517" wrote in message
...
but will i be able to pull up the information if it is in a different
workbook and that workbook is not opened?

"JE McGimpsey" wrote:

One way:

Say your master list is in a worksheet named Master. Then in your
working sheet:

A1: 1020.100
B1: =VLOOKUP(A1, Master!A:C,2,FALSE)
C1: =VLOOKUP(A1, Master!A:C,3,FALSE)

In article ,
Paco3517 wrote:

I would like to make a master list in excel for all of my other
worksheets to
be able to access to save myself a bunch of typing time. Example, if i
have
in my master list

Column A Column B Column C
Code Product Price
1020.100 Permit A 150.00
1020.200 Permit B 200.00

i would like to be able to simply type 1020.100 into column A and have
column's B and C filled in. Is this possible, and if it is, how do i go
about
getting it set up?



  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default How do I make a master look-up list in Excel?

insertnamedefinein the name box put in a name of your choice such as
myrange1in the refers to box type in your refernce such as
='[workbook.xls]sheet name'!$D$1:$F$23

=VLOOKUP(A1, myrange1,2,0)

--
Don Guillett
SalesAid Software

"Paco3517" wrote in message
...
sorry, but i'm new to this so you'll have to dumb it down just a touch. i
tried doing it that way but it isn't working and i can't figure out how to
type it in correctly.

"Don Guillett" wrote:

Your ORIGINAL post should have mentioned another workBOOK. The easiest
way
to do this is to make a defined name range in the destination workbook
that
refers to the workbook/worksheet/range in the source workbook.
='[workbook.xls]sheet name'!$D$1:$F$23

--
Don Guillett
SalesAid Software

"Paco3517" wrote in message
...
but will i be able to pull up the information if it is in a different
workbook and that workbook is not opened?

"JE McGimpsey" wrote:

One way:

Say your master list is in a worksheet named Master. Then in your
working sheet:

A1: 1020.100
B1: =VLOOKUP(A1, Master!A:C,2,FALSE)
C1: =VLOOKUP(A1, Master!A:C,3,FALSE)

In article ,
Paco3517 wrote:

I would like to make a master list in excel for all of my other
worksheets to
be able to access to save myself a bunch of typing time. Example, if
i
have
in my master list

Column A Column B Column C
Code Product Price
1020.100 Permit A 150.00
1020.200 Permit B 200.00

i would like to be able to simply type 1020.100 into column A and
have
column's B and C filled in. Is this possible, and if it is, how do i
go
about
getting it set up?




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
create a master list from other sheets ADK Excel Worksheet Functions 0 April 17th 07 08:05 PM
comparing 3 s/s to make up a master Little pete Excel Worksheet Functions 0 January 22nd 07 07:56 PM
Make inventory sheet to track, order & reduce quantity from master drc536 Excel Worksheet Functions 1 October 23rd 05 05:35 PM
Update master list with other lists Chab Excel Worksheet Functions 0 August 4th 05 03:46 PM
Is it possible to setup a self-updating master list? my brain hurts Excel Discussion (Misc queries) 1 July 29th 05 07:17 PM


All times are GMT +1. The time now is 04:48 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"