Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How can I make a list populate more than one cell in a row?

I am trying to use List in excel. My main goal is to get a list to populate
more than one cell. I want it to populate the "name" "DOB" "SSAN" and
"Gender" from one list rather than trying to match the name DOB SSAN and
gender to each other from seperate list. Anyone know how to do this?

A1c Woods, Marcus E
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default How can I make a list populate more than one cell in a row?

Perhaps you want to try your question again. I can't speak for everyone, but
to me, it isn't clear what you have, what you want, or what you are trying to
do.

the term list is ambiguous in the programming newsgroup. Do you mean the
ListObject introduced in xl2003, are you refering to the list property of a
listbox or combobox, or are you using the term list generically to describe a
series of related cells set up like a database. What do you mean by
populate. Populate is an action - cells don't populate themselves.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

I am trying to use List in excel. My main goal is to get a list to populate
more than one cell. I want it to populate the "name" "DOB" "SSAN" and
"Gender" from one list rather than trying to match the name DOB SSAN and
gender to each other from seperate list. Anyone know how to do this?

A1c Woods, Marcus E

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default How can I make a list populate more than one cell in a row?

Thanks Tom,

I am new to microsoft products since I never used them before I joined the
air force, unless I was writing a term paper and I used word on a school
computer.

To clerify. Right now I have two worksheets. It is a roster that will be
filled when needed and must be filled quickly and accurately ON DEMAND. The
first worksheet has static information that will always be there. The second
worksheet has list that can change but not often. Mostly Names Ranks and
Socials etc.

I want to match the names ranks and socials to specific criteria in the main
worksheet.

Name SSN Rank JT Position

those are some of the criteria in the main worksheet. the JT or "Joint
Team" and Position are static items while the name social and rank would be
the person who fills the position.

Right now I have a "list" created through the Data Validation menu that
will fill just the name. I want it to also fill the SSN, Rank, etc. criteria
as well.

Does this help any?

"Tom Ogilvy" wrote:

Perhaps you want to try your question again. I can't speak for everyone, but
to me, it isn't clear what you have, what you want, or what you are trying to
do.

the term list is ambiguous in the programming newsgroup. Do you mean the
ListObject introduced in xl2003, are you refering to the list property of a
listbox or combobox, or are you using the term list generically to describe a
series of related cells set up like a database. What do you mean by
populate. Populate is an action - cells don't populate themselves.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

I am trying to use List in excel. My main goal is to get a list to populate
more than one cell. I want it to populate the "name" "DOB" "SSAN" and
"Gender" from one list rather than trying to match the name DOB SSAN and
gender to each other from seperate list. Anyone know how to do this?

A1c Woods, Marcus E

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default How can I make a list populate more than one cell in a row?

Use the vlookup function

=if(dropdowncell = "","",vlookup(dropdowncell,statictable,2,False ))

would return the SSN for the name entered in the cell with the dropdown. If
no entry were in the dropdown cell, it would appear blank. the 2 represents
the column in the "statictable"/Main range from which the value will be
returned. If you wanted Rank, you would use 3.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

Thanks Tom,

I am new to microsoft products since I never used them before I joined the
air force, unless I was writing a term paper and I used word on a school
computer.

To clerify. Right now I have two worksheets. It is a roster that will be
filled when needed and must be filled quickly and accurately ON DEMAND. The
first worksheet has static information that will always be there. The second
worksheet has list that can change but not often. Mostly Names Ranks and
Socials etc.

I want to match the names ranks and socials to specific criteria in the main
worksheet.

Name SSN Rank JT Position

those are some of the criteria in the main worksheet. the JT or "Joint
Team" and Position are static items while the name social and rank would be
the person who fills the position.

Right now I have a "list" created through the Data Validation menu that
will fill just the name. I want it to also fill the SSN, Rank, etc. criteria
as well.

Does this help any?

"Tom Ogilvy" wrote:

Perhaps you want to try your question again. I can't speak for everyone, but
to me, it isn't clear what you have, what you want, or what you are trying to
do.

the term list is ambiguous in the programming newsgroup. Do you mean the
ListObject introduced in xl2003, are you refering to the list property of a
listbox or combobox, or are you using the term list generically to describe a
series of related cells set up like a database. What do you mean by
populate. Populate is an action - cells don't populate themselves.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

I am trying to use List in excel. My main goal is to get a list to populate
more than one cell. I want it to populate the "name" "DOB" "SSAN" and
"Gender" from one list rather than trying to match the name DOB SSAN and
gender to each other from seperate list. Anyone know how to do this?

A1c Woods, Marcus E

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default How can I make a list populate more than one cell in a row?

How do i reference the dropdowncell and what does statictable referencing.

"Tom Ogilvy" wrote:

Use the vlookup function

=if(dropdowncell = "","",vlookup(dropdowncell,statictable,2,False ))

would return the SSN for the name entered in the cell with the dropdown. If
no entry were in the dropdown cell, it would appear blank. the 2 represents
the column in the "statictable"/Main range from which the value will be
returned. If you wanted Rank, you would use 3.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

Thanks Tom,

I am new to microsoft products since I never used them before I joined the
air force, unless I was writing a term paper and I used word on a school
computer.

To clerify. Right now I have two worksheets. It is a roster that will be
filled when needed and must be filled quickly and accurately ON DEMAND. The
first worksheet has static information that will always be there. The second
worksheet has list that can change but not often. Mostly Names Ranks and
Socials etc.

I want to match the names ranks and socials to specific criteria in the main
worksheet.

Name SSN Rank JT Position

those are some of the criteria in the main worksheet. the JT or "Joint
Team" and Position are static items while the name social and rank would be
the person who fills the position.

Right now I have a "list" created through the Data Validation menu that
will fill just the name. I want it to also fill the SSN, Rank, etc. criteria
as well.

Does this help any?

"Tom Ogilvy" wrote:

Perhaps you want to try your question again. I can't speak for everyone, but
to me, it isn't clear what you have, what you want, or what you are trying to
do.

the term list is ambiguous in the programming newsgroup. Do you mean the
ListObject introduced in xl2003, are you refering to the list property of a
listbox or combobox, or are you using the term list generically to describe a
series of related cells set up like a database. What do you mean by
populate. Populate is an action - cells don't populate themselves.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

I am trying to use List in excel. My main goal is to get a list to populate
more than one cell. I want it to populate the "name" "DOB" "SSAN" and
"Gender" from one list rather than trying to match the name DOB SSAN and
gender to each other from seperate list. Anyone know how to do this?

A1c Woods, Marcus E



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default How can I make a list populate more than one cell in a row?

Tom is it possible I can send you a copy of the worksheet I am working on so
that you can better help me?

Marcus

"Tom Ogilvy" wrote:

Use the vlookup function

=if(dropdowncell = "","",vlookup(dropdowncell,statictable,2,False ))

would return the SSN for the name entered in the cell with the dropdown. If
no entry were in the dropdown cell, it would appear blank. the 2 represents
the column in the "statictable"/Main range from which the value will be
returned. If you wanted Rank, you would use 3.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

Thanks Tom,

I am new to microsoft products since I never used them before I joined the
air force, unless I was writing a term paper and I used word on a school
computer.

To clerify. Right now I have two worksheets. It is a roster that will be
filled when needed and must be filled quickly and accurately ON DEMAND. The
first worksheet has static information that will always be there. The second
worksheet has list that can change but not often. Mostly Names Ranks and
Socials etc.

I want to match the names ranks and socials to specific criteria in the main
worksheet.

Name SSN Rank JT Position

those are some of the criteria in the main worksheet. the JT or "Joint
Team" and Position are static items while the name social and rank would be
the person who fills the position.

Right now I have a "list" created through the Data Validation menu that
will fill just the name. I want it to also fill the SSN, Rank, etc. criteria
as well.

Does this help any?

"Tom Ogilvy" wrote:

Perhaps you want to try your question again. I can't speak for everyone, but
to me, it isn't clear what you have, what you want, or what you are trying to
do.

the term list is ambiguous in the programming newsgroup. Do you mean the
ListObject introduced in xl2003, are you refering to the list property of a
listbox or combobox, or are you using the term list generically to describe a
series of related cells set up like a database. What do you mean by
populate. Populate is an action - cells don't populate themselves.

--
Regards,
Tom Ogilvy


"Marcus Woods" wrote:

I am trying to use List in excel. My main goal is to get a list to populate
more than one cell. I want it to populate the "name" "DOB" "SSAN" and
"Gender" from one list rather than trying to match the name DOB SSAN and
gender to each other from seperate list. Anyone know how to do this?

A1c Woods, Marcus E

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
make dates automatically populate a cell on different worksheets Meenie Excel Worksheet Functions 2 December 1st 06 09:46 PM
auto populate cell based on previous cell drop down list selectio. PuzzledbyLists Excel Discussion (Misc queries) 2 September 11th 06 01:28 AM
make a cell automatically populate with "1" when specified cell va WendyM Excel Discussion (Misc queries) 1 March 28th 05 09:11 PM
Can we make a cell behave like a list box and populate it with values for selection. Prasad Vanka Excel Programming 0 June 9th 04 05:57 PM
How to Make Multiple List Box Selections Populate A Column in Excel Excel Nerd Excel Programming 1 January 23rd 04 12:46 AM


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