ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Excel 2000 - formula to display text from anoher worksheet (https://www.excelbanter.com/excel-discussion-misc-queries/182681-excel-2000-formula-display-text-anoher-worksheet.html)

Scott J

Excel 2000 - formula to display text from anoher worksheet
 
I have 2 worksheets. On sheet 1 is a list of items on order sorted by
customer number. The other sheet is a list of customer numbers in column A
and coresponding names in column B. I want to display the customer name
instead of the customer number in sheet 1 from the coresponding name in
column B that matches the number in column A in sheet 2. What formula can I
use for this?

Ron Coderre

Excel 2000 - formula to display text from anoher worksheet
 
With
Sheet1!A1: (a CustNum)
and
Sheet2!A1:B100 containing the XRef list of CustNum/Name

Try this on Sheet1:
This formula returns the name associated with the CustNum
B1: =VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0)

Note: if an incorrect CustNum is in Col_A,
the formula returns an error.

If you need error checking,
try this formula (in sections for readability):
B1:=IF(ISNUMBER(MATCH(A1,Sheet2!$A$1:$A$100,0)),
VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0),"No match")

Is that something you can work with?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Scott J" <Scott wrote in message
...
I have 2 worksheets. On sheet 1 is a list of items on order sorted by
customer number. The other sheet is a list of customer numbers in column A
and coresponding names in column B. I want to display the customer name
instead of the customer number in sheet 1 from the coresponding name in
column B that matches the number in column A in sheet 2. What formula can
I
use for this?




Scott J[_2_]

Excel 2000 - formula to display text from anoher worksheet
 
The first formula works but I didn't realize I have first and last names.
Column B on sheet 2 contains the last names and column C on sheet 2 contains
first names. How can I make it so another column in sheet 1 does the same
thing with the first names from column C on sheet 2? I tried tweaking it but
am having a hard time figuring it out.
Thanks

"Ron Coderre" wrote:

With
Sheet1!A1: (a CustNum)
and
Sheet2!A1:B100 containing the XRef list of CustNum/Name

Try this on Sheet1:
This formula returns the name associated with the CustNum
B1: =VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0)

Note: if an incorrect CustNum is in Col_A,
the formula returns an error.

If you need error checking,
try this formula (in sections for readability):
B1:=IF(ISNUMBER(MATCH(A1,Sheet2!$A$1:$A$100,0)),
VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0),"No match")

Is that something you can work with?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Scott J" <Scott wrote in message
...
I have 2 worksheets. On sheet 1 is a list of items on order sorted by
customer number. The other sheet is a list of customer numbers in column A
and coresponding names in column B. I want to display the customer name
instead of the customer number in sheet 1 from the coresponding name in
column B that matches the number in column A in sheet 2. What formula can
I
use for this?





Ron Coderre

Excel 2000 - formula to display text from anoher worksheet
 
Try this:

Last Names:
B1: =VLOOKUP(A1,Sheet2!$A$1:$C$100,2,0)

First Names:
C1: =VLOOKUP(A1,Sheet2!$A$1:$C$100,3,0)

Does that help?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Scott J" wrote in message
...
The first formula works but I didn't realize I have first and last names.
Column B on sheet 2 contains the last names and column C on sheet 2
contains
first names. How can I make it so another column in sheet 1 does the same
thing with the first names from column C on sheet 2? I tried tweaking it
but
am having a hard time figuring it out.
Thanks

"Ron Coderre" wrote:

With
Sheet1!A1: (a CustNum)
and
Sheet2!A1:B100 containing the XRef list of CustNum/Name

Try this on Sheet1:
This formula returns the name associated with the CustNum
B1: =VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0)

Note: if an incorrect CustNum is in Col_A,
the formula returns an error.

If you need error checking,
try this formula (in sections for readability):
B1:=IF(ISNUMBER(MATCH(A1,Sheet2!$A$1:$A$100,0)),
VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0),"No match")

Is that something you can work with?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Scott J" <Scott wrote in message
...
I have 2 worksheets. On sheet 1 is a list of items on order sorted by
customer number. The other sheet is a list of customer numbers in
column A
and coresponding names in column B. I want to display the customer name
instead of the customer number in sheet 1 from the coresponding name in
column B that matches the number in column A in sheet 2. What formula
can
I
use for this?







Scott J[_2_]

Excel 2000 - formula to display text from anoher worksheet
 
Thank You Ron, That did it. I appreciate your time.
Scott

"Ron Coderre" wrote:

Try this:

Last Names:
B1: =VLOOKUP(A1,Sheet2!$A$1:$C$100,2,0)

First Names:
C1: =VLOOKUP(A1,Sheet2!$A$1:$C$100,3,0)

Does that help?
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Scott J" wrote in message
...
The first formula works but I didn't realize I have first and last names.
Column B on sheet 2 contains the last names and column C on sheet 2
contains
first names. How can I make it so another column in sheet 1 does the same
thing with the first names from column C on sheet 2? I tried tweaking it
but
am having a hard time figuring it out.
Thanks

"Ron Coderre" wrote:

With
Sheet1!A1: (a CustNum)
and
Sheet2!A1:B100 containing the XRef list of CustNum/Name

Try this on Sheet1:
This formula returns the name associated with the CustNum
B1: =VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0)

Note: if an incorrect CustNum is in Col_A,
the formula returns an error.

If you need error checking,
try this formula (in sections for readability):
B1:=IF(ISNUMBER(MATCH(A1,Sheet2!$A$1:$A$100,0)),
VLOOKUP(A1,Sheet2!$A$1:$B$100,2,0),"No match")

Is that something you can work with?
Post back if you have more questions.
--------------------------

Regards,

Ron
Microsoft MVP (Excel)
(XL2003, Win XP)

"Scott J" <Scott wrote in message
...
I have 2 worksheets. On sheet 1 is a list of items on order sorted by
customer number. The other sheet is a list of customer numbers in
column A
and coresponding names in column B. I want to display the customer name
instead of the customer number in sheet 1 from the coresponding name in
column B that matches the number in column A in sheet 2. What formula
can
I
use for this?








All times are GMT +1. The time now is 07:50 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com