Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Combine two spreadsheets into one

I have two spreadsheets. Sheet 1 has names, birth date, application date, account number, etc. Sheet 2, which is pulled from a different source, has names, birth date, attendance date, account balance, testing date, etc. Sheet 1 may have names that are not on Sheet 2 and vice versa. I want a Sheet 3 which has all of the columns. It should also combine clients...for instance, John Smith is on sheet 1 with his application date and account number and he is also on sheet 2 which shows his attendance date and account balance.. Instead of getting two John Smiths on sheet 3, I would like it to combine the information into one row which shows his application date, account number, attendance date, and account balance.

Doing it manually is not an option since there are so many, but I'm not sure how else to do it. Do you have any suggestions? I really appreciate any help you can provide. Thank you so much!!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 587
Default Combine two spreadsheets into one

hi,

if there is no duplicate entries (name and account number) on sheet1

looking for names and account number (i suppose it is columns A and D)

put this formula on sheet2,

=INDEX(Sheet1!C:C,MATCH(Sheet1!A1&Sheet1!D1,Sheet1 !A:A&Sheet1!D:D,0))

array formula, validate with ctrl + shift + enter

then change this part C:C to get info for different columns

note:
when you change a part of formula, dont forget to validate with ctrl +
shift + enter

when the data are collected and verified,
i suggest that you make a copy / paste special / values,
array formulas are using lots of memory

isabelle

Le 2013-08-13 13:16, a écrit :
I have two spreadsheets. Sheet 1 has names, birth date, application date, account number, etc. Sheet 2,


which is pulled from a different source, has names, birth date,
attendance date, account balance, testing date, etc.

Sheet 1 may have names that are not on Sheet 2 and vice versa. I want a
Sheet 3 which has all of the columns.

It should also combine clients...for instance, John Smith is on sheet
1 with his application date and account number

and he is also on sheet 2 which shows his attendance date and account
balance. Instead of getting two John Smiths on sheet 3,

I would like it to combine the information into one row which shows
his application date, account number, attendance date, and account balance.

Doing it manually is not an option since there are so many, but I'm not sure how else to do it. Do you have any suggestions?


I really appreciate any help you can provide. Thank you so much!!

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 587
Default Combine two spreadsheets into one

if there is no duplicate entries account number on sheet1 and sheet2

you can use this formula (it is not an array formula)

=INDEX(Sheet1!C:C,MATCH(Sheet1!D1,Sheet1!D:D,0))

isabelle


Le 2013-08-14 22:11, isabelle a écrit :
hi,

if there is no duplicate entries (name and account number) on sheet1

looking for names and account number (i suppose it is columns A and D)

put this formula on sheet2,

=INDEX(Sheet1!C:C,MATCH(Sheet1!A1&Sheet1!D1,Sheet1 !A:A&Sheet1!D:D,0))

array formula, validate with ctrl + shift + enter

then change this part C:C to get info for different columns

note:
when you change a part of formula, dont forget to validate with ctrl +
shift + enter

when the data are collected and verified,
i suggest that you make a copy / paste special / values,
array formulas are using lots of memory

isabelle

Le 2013-08-13 13:16, a écrit :
I have two spreadsheets. Sheet 1 has names, birth date, application
date, account number, etc. Sheet 2,


which is pulled from a different source, has names, birth date,
attendance date, account balance, testing date, etc.

Sheet 1 may have names that are not on Sheet 2 and vice versa. I want a
Sheet 3 which has all of the columns.

It should also combine clients...for instance, John Smith is on sheet
1 with his application date and account number

and he is also on sheet 2 which shows his attendance date and account
balance. Instead of getting two John Smiths on sheet 3,

I would like it to combine the information into one row which shows
his application date, account number, attendance date, and account balance.

Doing it manually is not an option since there are so many, but I'm
not sure how else to do it. Do you have any suggestions?


I really appreciate any help you can provide. Thank you so much!!

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 587
Default Combine two spreadsheets into one

correction:

=INDEX(Sheet1!C:C,MATCH(Sheet2!D1,Sheet1!D:D,0))

or the array formula

=INDEX(Sheet1!C:C,MATCH(Sheet2!A1&Sheet2!D1,Sheet1 !A:A&Sheet1!D:D,0))

isabelle

Le 2013-08-14 22:18, isabelle a écrit :
if there is no duplicate entries account number on sheet1 and sheet2

you can use this formula (it is not an array formula)

=INDEX(Sheet1!C:C,MATCH(Sheet1!D1,Sheet1!D:D,0))

isabelle


Le 2013-08-14 22:11, isabelle a écrit :
hi,

if there is no duplicate entries (name and account number) on sheet1

looking for names and account number (i suppose it is columns A and D)

put this formula on sheet2,

=INDEX(Sheet1!C:C,MATCH(Sheet1!A1&Sheet1!D1,Sheet1 !A:A&Sheet1!D:D,0))

array formula, validate with ctrl + shift + enter

then change this part C:C to get info for different columns

note:
when you change a part of formula, dont forget to validate with ctrl +
shift + enter

when the data are collected and verified,
i suggest that you make a copy / paste special / values,
array formulas are using lots of memory

isabelle

Le 2013-08-13 13:16, a écrit :
I have two spreadsheets. Sheet 1 has names, birth date, application
date, account number, etc. Sheet 2,


which is pulled from a different source, has names, birth date,
attendance date, account balance, testing date, etc.

Sheet 1 may have names that are not on Sheet 2 and vice versa. I want a
Sheet 3 which has all of the columns.

It should also combine clients...for instance, John Smith is on sheet
1 with his application date and account number

and he is also on sheet 2 which shows his attendance date and account
balance. Instead of getting two John Smiths on sheet 3,

I would like it to combine the information into one row which shows
his application date, account number, attendance date, and account
balance.

Doing it manually is not an option since there are so many, but I'm
not sure how else to do it. Do you have any suggestions?


I really appreciate any help you can provide. Thank you so much!!

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
Combine 2 spreadsheets by parsing from one to the other Steve Excel Programming 0 May 13th 10 05:15 PM
How to combine 200 spreadsheets Phil Smith Excel Discussion (Misc queries) 5 January 22nd 08 08:25 PM
Lookup+combine two spreadsheets into third Benjamin Chait Excel Discussion (Misc queries) 1 March 23rd 07 07:45 PM
How do I combine spreadsheets? Jennifer Excel Discussion (Misc queries) 2 August 31st 06 09:33 AM
how do i combine two separate spreadsheets? Merging Spreadsheets Excel Discussion (Misc queries) 1 March 2nd 06 04:42 PM


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