Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Pull in address from another worksheet

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Pull in address from another worksheet

You probably would need VLOOKUP or INDIRECT.EXT for this. VLOOKUP is an
excel function and would require the workbook with the info you need to be
open. If the data is on different worksheets within the same workbook, you
should only need VLOOKUP.

INDIRECT.EXT does not require the workbook to be open, but you probably
would need to have a VLOOKUP within your function. MOREFUNC is available
he

http://xcell05.free.fr/english/index...func_Functions

HTH,
Barb Reinhardt
"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Pull in address from another worksheet

Would it be possible to give me an example formula? I'm new at this and am
struggling with it.
If I need to have both worksheets that's fine as long as the formula works.
I would like to type the store # in column M and it pull up the address (col
N), city (col O), state (col P) and zip (col Q) from the other worksheet.
Thanks!

"Barb Reinhardt" wrote:

You probably would need VLOOKUP or INDIRECT.EXT for this. VLOOKUP is an
excel function and would require the workbook with the info you need to be
open. If the data is on different worksheets within the same workbook, you
should only need VLOOKUP.

INDIRECT.EXT does not require the workbook to be open, but you probably
would need to have a VLOOKUP within your function. MOREFUNC is available
he

http://xcell05.free.fr/english/index...func_Functions

HTH,
Barb Reinhardt
"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Pull in address from another worksheet

If you could give me the following information, I could give you a formula
that works for your application:

1) What sheet is the information you need on?
2) What column is the store number in?
3) What column are the address, city/state, and ZIP code in?
4) How many rows of data do you have on this sheet?

I can get you something close with that info.

"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Pull in address from another worksheet

1) WMstorelist 3_20_06 - the master store sheet
2) Column A - Store #
3) Column C - Address
Column D - City
Column E - State
Column F - Zip
4) 3678 - Total Rows

On the invoice sheet, the address info needs to go into columns

Column N - Address
Column O - City
Column P - State
Column Q - Zip

Thanks!!

"Barb Reinhardt" wrote:

If you could give me the following information, I could give you a formula
that works for your application:

1) What sheet is the information you need on?
2) What column is the store number in?
3) What column are the address, city/state, and ZIP code in?
4) How many rows of data do you have on this sheet?

I can get you something close with that info.

"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Pull in address from another worksheet

This is what you'll need

=VLOOKUP(A1,WMstorelist 3_20_06!A2:E3678,FALSE)

A1 is the store # that you want to match. Change as necessary,

This assumes that the store #'s are sorted from low to high.

"S. Hernandez" wrote:

1) WMstorelist 3_20_06 - the master store sheet
2) Column A - Store #
3) Column C - Address
Column D - City
Column E - State
Column F - Zip
4) 3678 - Total Rows

On the invoice sheet, the address info needs to go into columns

Column N - Address
Column O - City
Column P - State
Column Q - Zip

Thanks!!

"Barb Reinhardt" wrote:

If you could give me the following information, I could give you a formula
that works for your application:

1) What sheet is the information you need on?
2) What column is the store number in?
3) What column are the address, city/state, and ZIP code in?
4) How many rows of data do you have on this sheet?

I can get you something close with that info.

"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Pull in address from another worksheet

Thank you so much for your help!!

"Barb Reinhardt" wrote:

This is what you'll need

=VLOOKUP(A1,WMstorelist 3_20_06!A2:E3678,FALSE)

A1 is the store # that you want to match. Change as necessary,

This assumes that the store #'s are sorted from low to high.

"S. Hernandez" wrote:

1) WMstorelist 3_20_06 - the master store sheet
2) Column A - Store #
3) Column C - Address
Column D - City
Column E - State
Column F - Zip
4) 3678 - Total Rows

On the invoice sheet, the address info needs to go into columns

Column N - Address
Column O - City
Column P - State
Column Q - Zip

Thanks!!

"Barb Reinhardt" wrote:

If you could give me the following information, I could give you a formula
that works for your application:

1) What sheet is the information you need on?
2) What column is the store number in?
3) What column are the address, city/state, and ZIP code in?
4) How many rows of data do you have on this sheet?

I can get you something close with that info.

"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,355
Default Pull in address from another worksheet

Oops, forgot one thing. And it's IMPORTANT

=VLOOKUP(A1,WMstorelist 3_20_06!A2:E3678,2,FALSE) gets 2nd column
=VLOOKUP(A1,WMstorelist 3_20_06!A2:E3678,3,FALSE) gets 3rd column

You may want to add some $ to get this:

=VLOOKUP(A1,WMstorelist 3_20_06!A$2:E$3678,2,FALSE) gets 2nd column

If you copy down, the first row # will remain the same in the lookup.



"S. Hernandez" wrote:

Thank you so much for your help!!

"Barb Reinhardt" wrote:

This is what you'll need

=VLOOKUP(A1,WMstorelist 3_20_06!A2:E3678,FALSE)

A1 is the store # that you want to match. Change as necessary,

This assumes that the store #'s are sorted from low to high.

"S. Hernandez" wrote:

1) WMstorelist 3_20_06 - the master store sheet
2) Column A - Store #
3) Column C - Address
Column D - City
Column E - State
Column F - Zip
4) 3678 - Total Rows

On the invoice sheet, the address info needs to go into columns

Column N - Address
Column O - City
Column P - State
Column Q - Zip

Thanks!!

"Barb Reinhardt" wrote:

If you could give me the following information, I could give you a formula
that works for your application:

1) What sheet is the information you need on?
2) What column is the store number in?
3) What column are the address, city/state, and ZIP code in?
4) How many rows of data do you have on this sheet?

I can get you something close with that info.

"S. Hernandez" wrote:

I have two worksheets. The first is a master listing of all stores for a
certain client. They are all assigned a store number. The second sheet is a
list of all invoices, I need to be able to type in the store number and it
pull up the street address, city, state and zip, all in different columns.
Help please!!

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
How do I get ONLY new info from 1 Worksheet to another automatical Elaine Excel Worksheet Functions 6 July 13th 06 05:45 PM
Search/Match between 2 x separate Worksheets and populate result in third worksheet Alan Bartley Excel Discussion (Misc queries) 1 April 11th 05 05:21 AM
How do I pull information from one worksheet to another using cer. JeAnFrLe Excel Worksheet Functions 1 April 1st 05 07:18 AM
Copy from worksheet to another x times Union70 Excel Discussion (Misc queries) 0 March 7th 05 09:03 PM
Can I import my excel worksheet to my address book joelcelyn Excel Discussion (Misc queries) 2 February 13th 05 11:27 PM


All times are GMT +1. The time now is 10:42 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"