Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default dependants for a drop down list

i have columns of employee first name,last name, ID#, aniversary date ect. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default dependants for a drop down list

Assume ID# is column C, with first name in column A and last name in
column B etc., and that your drop-down is in M2, then this will
retrieve the first name:

=INDEX(A:A,MATCH(M2,C:C,0))

and this will get the last name:

=INDEX(B:B,MATCH(M2,C:C,0))

and so on for your other fields.

Hope this helps.

Pete

On Sep 22, 12:40*am, Mainer wrote:
i have columns of employee first name,last name, ID#, aniversary date ect.. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default dependants for a drop down list

thanks a bunch its been a few years

"Pete_UK" wrote:

Assume ID# is column C, with first name in column A and last name in
column B etc., and that your drop-down is in M2, then this will
retrieve the first name:

=INDEX(A:A,MATCH(M2,C:C,0))

and this will get the last name:

=INDEX(B:B,MATCH(M2,C:C,0))

and so on for your other fields.

Hope this helps.

Pete

On Sep 22, 12:40 am, Mainer wrote:
i have columns of employee first name,last name, ID#, aniversary date ect.. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default dependants for a drop down list

You're welcome.

Pete

On Sep 22, 1:47*am, Mainer wrote:
thanks a bunch its been a few years



"Pete_UK" wrote:
Assume ID# is column C, with first name in column A and last name in
column B etc., and that your drop-down is in M2, then this will
retrieve the first name:


=INDEX(A:A,MATCH(M2,C:C,0))


and this will get the last name:


=INDEX(B:B,MATCH(M2,C:C,0))


and so on for your other fields.


Hope this helps.


Pete


On Sep 22, 12:40 am, Mainer wrote:
i have columns of employee first name,last name, ID#, aniversary date ect.. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default dependants for a drop down list

ok...on the same note i need to check for a letter in the same row say a
range lets say H12-AL12....12 being the row it found in the first example you
gave...i now need to get the info from the top of the chart which is in row 7
....little lost ..any help is welcome and thanks in advance :)

"Pete_UK" wrote:

You're welcome.

Pete

On Sep 22, 1:47 am, Mainer wrote:
thanks a bunch its been a few years



"Pete_UK" wrote:
Assume ID# is column C, with first name in column A and last name in
column B etc., and that your drop-down is in M2, then this will
retrieve the first name:


=INDEX(A:A,MATCH(M2,C:C,0))


and this will get the last name:


=INDEX(B:B,MATCH(M2,C:C,0))


and so on for your other fields.


Hope this helps.


Pete


On Sep 22, 12:40 am, Mainer wrote:
i have columns of employee first name,last name, ID#, aniversary date ect.. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task- Hide quoted text -


- Show quoted text -





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default dependants for a drop down list

I don't quite understand. Can you elaborate, and ideally post an
example of what you are trying to do.

Pete

On Sep 22, 11:56*pm, Mainer wrote:
ok...on the same note i need to check for a letter in the same row say a
range lets say H12-AL12....12 being the row it found in the first example you
gave...i now need to get the info from the top of the chart which is in row 7
...little lost ..any help is welcome and thanks in advance :)



"Pete_UK" wrote:
You're welcome.


Pete


On Sep 22, 1:47 am, Mainer wrote:
thanks a bunch its been a few years


"Pete_UK" wrote:
Assume ID# is column C, with first name in column A and last name in
column B etc., and that your drop-down is in M2, then this will
retrieve the first name:


=INDEX(A:A,MATCH(M2,C:C,0))


and this will get the last name:


=INDEX(B:B,MATCH(M2,C:C,0))


and so on for your other fields.


Hope this helps.


Pete


On Sep 22, 12:40 am, Mainer wrote:
i have columns of employee first name,last name, ID#, aniversary date ect.. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default dependants for a drop down list

ok this is how it is...
the top of the worksheet contains a list of id#s,names,date of hire ect in
columns...the columns following them are dates of the month and each day I
input a letter for tardy,absent,excused absent
looks like this
H I J K L M N O P Q R ...
1 id name DOH 1 2 3 4 5 6 7 8 ...31<---days
of the month
2 34097 jane doe 4/04/2003 t t

below this i have created a form and i have a drop down menu using data
validation of the list of id #'s and when an id # is picked it fills in all
the other info(there are alot more columns then shown here) my objective now
is to get the dates of the columns with 't' or 'a' or 'e' down into the form

"Pete_UK" wrote:

I don't quite understand. Can you elaborate, and ideally post an
example of what you are trying to do.

Pete

On Sep 22, 11:56 pm, Mainer wrote:
ok...on the same note i need to check for a letter in the same row say a
range lets say H12-AL12....12 being the row it found in the first example you
gave...i now need to get the info from the top of the chart which is in row 7
...little lost ..any help is welcome and thanks in advance :)



"Pete_UK" wrote:
You're welcome.


Pete


On Sep 22, 1:47 am, Mainer wrote:
thanks a bunch its been a few years


"Pete_UK" wrote:
Assume ID# is column C, with first name in column A and last name in
column B etc., and that your drop-down is in M2, then this will
retrieve the first name:


=INDEX(A:A,MATCH(M2,C:C,0))


and this will get the last name:


=INDEX(B:B,MATCH(M2,C:C,0))


and so on for your other fields.


Hope this helps.


Pete


On Sep 22, 12:40 am, Mainer wrote:
i have columns of employee first name,last name, ID#, aniversary date ect.. i
have a seperate area on the same worksheet that i have a form that i have
installed a drop down list of id #s and i would like the form to fill in the
info for the employee for the ID that is picked....seemed like a simple task- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



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
Sheet Dependants Mitch Powell Excel Discussion (Misc queries) 3 September 1st 09 01:48 PM
Trace dependants/precedents from another worksheet Atreides Excel Discussion (Misc queries) 7 August 13th 08 03:26 PM
Trace Dependants Not Working... voyeurs Excel Worksheet Functions 0 December 4th 05 02:41 PM
multiple select from the drop down list in excel. list in one sheet and drop down in sriramus Excel Discussion (Misc queries) 5 October 27th 05 06:55 PM
Trace Dependants NICK Excel Discussion (Misc queries) 0 May 18th 05 08:16 AM


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