Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
s&d s&d is offline
external usenet poster
 
Posts: 2
Default not sure what functions/code to use?

I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".

Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,758
Default not sure what functions/code to use?

You could use =vlookup()
Visit Debra Dalgleish's site:
http://www.contextures.com/xlFunctions02.html
for nice instructions.

But maybe it would be easier using Data|Validation--then you could see the name
you're choosing.

Also from Debra's site:
http://www.contextures.com/xlDataVal01.html



s&d wrote:

I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".

Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default not sure what functions/code to use?

=VLOOKUP(A2,'User Names'!A1:B20,2,False)

--

HTH

RP
(remove nothere from the email address if mailing direct)


"s&d" wrote in message
...
I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".

Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,119
Default not sure what functions/code to use?

Providing that Column A contains unique values then I would recommend a
Vlookup Function. You can find it in the help.
--
HTH...

Jim Thomlinson


"s&d" wrote:

I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".

Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default not sure what functions/code to use?

You don't really need code for this.

Sounds like VLOOKUP could do the trick.

For more on that Function see Debra Dalgleish's site.

http://www.contextures.on.ca/xlFunctions02.html

Also see Debra's site for info on Data Validation lists with drop-down box for
entering the code numbers.

http://www.contextures.on.ca/xlDataVal01.html

Might be useful.


Gord Dibben Excel MVP

On Mon, 4 Jul 2005 18:00:46 -0400, "s&d" wrote:

I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".

Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 296
Default not sure what functions/code to use?

On Mon, 4 Jul 2005 18:00:46 -0400, "s&d"
wrote:

I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".


Use the VLOOKUP formula.

Give a range name to the data in the User Names worksheet, say
"NameData"


Then in your seperate blank worksheet, assuming the "User Number"
heading is in A1 and "User Name" heading in B1, type the following in
B2.

=VLOOKUP(A2,NameData,2,False).

Then enter your number in A2

HTH

Regards


Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.


__
Richard Buttrey
Grappenhall, Cheshire, UK
__________________________
  #7   Report Post  
Posted to microsoft.public.excel.programming
s&d s&d is offline
external usenet poster
 
Posts: 2
Default not sure what functions/code to use?

Thank you so very much everyone, it works!!!



"s&d" wrote in message
...
I was wondering if someone can gear me in the right direction with this.

I created a data-only worksheet with 2 columns as per below with all the
data: I called the worksheet "User Names"

in column A in column B

1 j. doe
2 k. anderson
3 l. wilson
4 m. robinson
5 n. woods

In a separate blank worksheet with the following headings, I would like to
retrieve the data from the "User Names" worksheet.

User Number User Name

For example: If I typed in the number "3" under "User Number" column, I
would like it to lookup the number "3" in the "User Names" worksheet and
retrieve the name "l. wilson" and insert it in the cell under "User Name".

Any information would be greatly appreciated, the whole purpose of this is
to save time from writing out the User names all the time.

Thanks,
Sherry.



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 to convert cell formula functions to code functions Adnan Excel Discussion (Misc queries) 1 October 1st 08 08:30 PM
Where can I see financial functions in VBA code? eios[_2_] Excel Programming 1 November 2nd 04 12:54 PM
How to see code for general functions? eios Excel Programming 2 November 2nd 04 09:12 AM
Entering functions in code H.V. Excel Programming 1 November 14th 03 08:12 PM
Using Built in Functions in VBA Code Chris Parker Excel Programming 1 July 16th 03 05:42 PM


All times are GMT +1. The time now is 06:48 AM.

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

About Us

"It's about Microsoft Excel"