Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Combining Non-numerica data from multiple sources

I need to consolidate data (non numerical data) together. In Sheet #1
(NAMES) I have three columns. The first is a unique key "PAXID" followed by
"Last Name" and "First Name". On Sheet #2 (ADDRESSES) I have the same
"PAXID" column followed by "Address Line 1", "Address Line 2", City",
"State", and "Postal Code"

I need to join all these fields into a single sheet that would have PAXID,
Last Name, First Name, AddressLine1, AddressLine2, City, State and Postal
Code. There is a good chance that we have a person's name, but not their
address, so a PAXID, Last Name and First Name exist, but there would be no
entry in the ADDRESS sheet.

Is there an "easy" way to consolidate this kind of data?

John Jost
St. Louis MO

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 983
Default Combining Non-numerica data from multiple sources

Based on your question I would recomend a VLookup function. The general
format is to look up a value from within a list, returning an item from that
list, It also give you the option to specify an exact match or not.

=Vlookup(A1, Addresses, 3, false)

A1 is a specific PAXID
Addresses is a named range of Cells (You could just specify a range of
cells, but make sure that you specify the range in absolute terms)
3 specifies the third column in the list you are looking into
false means that you anly want exact matches returned.

If I was doing it my final formula would probably look like this

=if(isna(vlookup(A1, Addresses, 3, false)), "", vlookup(A1, Addresses, 3,
false))

If you have trouble just reply back...

"John Jost" wrote:

I need to consolidate data (non numerical data) together. In Sheet #1
(NAMES) I have three columns. The first is a unique key "PAXID" followed by
"Last Name" and "First Name". On Sheet #2 (ADDRESSES) I have the same
"PAXID" column followed by "Address Line 1", "Address Line 2", City",
"State", and "Postal Code"

I need to join all these fields into a single sheet that would have PAXID,
Last Name, First Name, AddressLine1, AddressLine2, City, State and Postal
Code. There is a good chance that we have a person's name, but not their
address, so a PAXID, Last Name and First Name exist, but there would be no
entry in the ADDRESS sheet.

Is there an "easy" way to consolidate this kind of data?

John Jost
St. Louis MO

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Combining Non-numerica data from multiple sources

Hey Jim, Thanks I'll give that a try.

"Jim Thomlinson" wrote:

Based on your question I would recomend a VLookup function. The general
format is to look up a value from within a list, returning an item from that
list, It also give you the option to specify an exact match or not.

=Vlookup(A1, Addresses, 3, false)

A1 is a specific PAXID
Addresses is a named range of Cells (You could just specify a range of
cells, but make sure that you specify the range in absolute terms)
3 specifies the third column in the list you are looking into
false means that you anly want exact matches returned.

If I was doing it my final formula would probably look like this

=if(isna(vlookup(A1, Addresses, 3, false)), "", vlookup(A1, Addresses, 3,
false))

If you have trouble just reply back...

"John Jost" wrote:

I need to consolidate data (non numerical data) together. In Sheet #1
(NAMES) I have three columns. The first is a unique key "PAXID" followed by
"Last Name" and "First Name". On Sheet #2 (ADDRESSES) I have the same
"PAXID" column followed by "Address Line 1", "Address Line 2", City",
"State", and "Postal Code"

I need to join all these fields into a single sheet that would have PAXID,
Last Name, First Name, AddressLine1, AddressLine2, City, State and Postal
Code. There is a good chance that we have a person's name, but not their
address, so a PAXID, Last Name and First Name exist, but there would be no
entry in the ADDRESS sheet.

Is there an "easy" way to consolidate this kind of data?

John Jost
St. Louis MO

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
Spreadsheet With Multiple Data Sources leimst Excel Worksheet Functions 2 September 28th 08 04:25 PM
Data Validation with Multiple Sources Jerkyboy Excel Discussion (Misc queries) 1 August 15th 06 10:49 PM
Combining two data sources in a Pivot table. Erasmus Bowen Excel Discussion (Misc queries) 0 August 19th 05 09:16 AM
combining data from two sources M Excel Programming 3 January 7th 04 01:44 PM
combining data from two sources M Excel Programming 0 January 6th 04 06:41 PM


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