#1   Report Post  
Posted to microsoft.public.excel.misc
mlf
 
Posts: n/a
Default updating?

Hi-

I am working off of a mastersheet with student names, addresses, date of
births, etc. I was recentely given another spreadsheet of some of the
students with their date of births, what would be the easiest way to update
the mastersheet?

Thanks in advance.
mlf
  #2   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre
 
Posts: n/a
Default updating?

Try this:
Assumptions:
Mastersheet has Names in Col_A, DateOfBirth in Col_B
NewDataSheet has been copied/moved to the same workbook as Mastersheet
NewDataSheet has Names in Col_A, DateOfBirth in Col_B

On the Mastersheet:
C2:
IF(ISERROR(VLOOKUP(A2,NewDataSheet!A1:B100,2,0)),B 2,VLOOKUP(A2,NewDataSheet!A1:B100,2,0))

Copy that down as far as needed
(It will use the old value, unless there is a new value in the NewDataSheet)

Then select all of the formulas in Col_C
EditCopy
Select Cell B2
EditPaste SpecialValues


Does that help?

***********
Regards,
Ron


"mlf" wrote:

Hi-

I am working off of a mastersheet with student names, addresses, date of
births, etc. I was recentely given another spreadsheet of some of the
students with their date of births, what would be the easiest way to update
the mastersheet?

Thanks in advance.
mlf

  #3   Report Post  
Posted to microsoft.public.excel.misc
mlf
 
Posts: n/a
Default updating?

I appreciate your assistance. Only, I don't think I explained myself clearly
{sorry}. The latest sheet was not copied/moved from the sheet I am working
on. It was given to me in excel, but with different columns. I am
interested primarily in comparing/updating birthdates from the new sheet.

Thanks!

"Ron Coderre" wrote:

Try this:
Assumptions:
Mastersheet has Names in Col_A, DateOfBirth in Col_B
NewDataSheet has been copied/moved to the same workbook as Mastersheet
NewDataSheet has Names in Col_A, DateOfBirth in Col_B

On the Mastersheet:
C2:
IF(ISERROR(VLOOKUP(A2,NewDataSheet!A1:B100,2,0)),B 2,VLOOKUP(A2,NewDataSheet!A1:B100,2,0))

Copy that down as far as needed
(It will use the old value, unless there is a new value in the NewDataSheet)

Then select all of the formulas in Col_C
EditCopy
Select Cell B2
EditPaste SpecialValues


Does that help?

***********
Regards,
Ron


"mlf" wrote:

Hi-

I am working off of a mastersheet with student names, addresses, date of
births, etc. I was recentely given another spreadsheet of some of the
students with their date of births, what would be the easiest way to update
the mastersheet?

Thanks in advance.
mlf

  #4   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre
 
Posts: n/a
Default updating?

OK...let's get on the same page here. What I suggested WOULD update your
Mastersheet with the lastest information from the NewDataSheet.

The easiest way (from a description standpoint) was for you to right-click
the tab of the NewDataSheet and create a copy of it in the same workbook as
the Mastersheet. That's what I was referering to in my assumption.

Then just follow my previous instructions. Of course, adjust references to
suit your actual situation. That should update the birtdates of the
Mastesheet with the latest birthdates from the NewDataSheet.

When done...just delete the formulas and the copy of the NewDataSheet.

Does that help?

***********
Regards,
Ron


"mlf" wrote:

I appreciate your assistance. Only, I don't think I explained myself clearly
{sorry}. The latest sheet was not copied/moved from the sheet I am working
on. It was given to me in excel, but with different columns. I am
interested primarily in comparing/updating birthdates from the new sheet.

Thanks!

"Ron Coderre" wrote:

Try this:
Assumptions:
Mastersheet has Names in Col_A, DateOfBirth in Col_B
NewDataSheet has been copied/moved to the same workbook as Mastersheet
NewDataSheet has Names in Col_A, DateOfBirth in Col_B

On the Mastersheet:
C2:
IF(ISERROR(VLOOKUP(A2,NewDataSheet!A1:B100,2,0)),B 2,VLOOKUP(A2,NewDataSheet!A1:B100,2,0))

Copy that down as far as needed
(It will use the old value, unless there is a new value in the NewDataSheet)

Then select all of the formulas in Col_C
EditCopy
Select Cell B2
EditPaste SpecialValues


Does that help?

***********
Regards,
Ron


"mlf" wrote:

Hi-

I am working off of a mastersheet with student names, addresses, date of
births, etc. I was recentely given another spreadsheet of some of the
students with their date of births, what would be the easiest way to update
the mastersheet?

Thanks in advance.
mlf

  #5   Report Post  
Posted to microsoft.public.excel.misc
mlf
 
Posts: n/a
Default updating?

Thank you so much for your help! It worked.

"Ron Coderre" wrote:

OK...let's get on the same page here. What I suggested WOULD update your
Mastersheet with the lastest information from the NewDataSheet.

The easiest way (from a description standpoint) was for you to right-click
the tab of the NewDataSheet and create a copy of it in the same workbook as
the Mastersheet. That's what I was referering to in my assumption.

Then just follow my previous instructions. Of course, adjust references to
suit your actual situation. That should update the birtdates of the
Mastesheet with the latest birthdates from the NewDataSheet.

When done...just delete the formulas and the copy of the NewDataSheet.

Does that help?

***********
Regards,
Ron


"mlf" wrote:

I appreciate your assistance. Only, I don't think I explained myself clearly
{sorry}. The latest sheet was not copied/moved from the sheet I am working
on. It was given to me in excel, but with different columns. I am
interested primarily in comparing/updating birthdates from the new sheet.

Thanks!

"Ron Coderre" wrote:

Try this:
Assumptions:
Mastersheet has Names in Col_A, DateOfBirth in Col_B
NewDataSheet has been copied/moved to the same workbook as Mastersheet
NewDataSheet has Names in Col_A, DateOfBirth in Col_B

On the Mastersheet:
C2:
IF(ISERROR(VLOOKUP(A2,NewDataSheet!A1:B100,2,0)),B 2,VLOOKUP(A2,NewDataSheet!A1:B100,2,0))

Copy that down as far as needed
(It will use the old value, unless there is a new value in the NewDataSheet)

Then select all of the formulas in Col_C
EditCopy
Select Cell B2
EditPaste SpecialValues


Does that help?

***********
Regards,
Ron


"mlf" wrote:

Hi-

I am working off of a mastersheet with student names, addresses, date of
births, etc. I was recentely given another spreadsheet of some of the
students with their date of births, what would be the easiest way to update
the mastersheet?

Thanks in advance.
mlf



  #6   Report Post  
Posted to microsoft.public.excel.misc
Ron Coderre
 
Posts: n/a
Default updating?

Thanks for letting me know that it worked. I'm glad I could help.


***********
Regards,
Ron


"mlf" wrote:

Thank you so much for your help! It worked.

"Ron Coderre" wrote:

OK...let's get on the same page here. What I suggested WOULD update your
Mastersheet with the lastest information from the NewDataSheet.

The easiest way (from a description standpoint) was for you to right-click
the tab of the NewDataSheet and create a copy of it in the same workbook as
the Mastersheet. That's what I was referering to in my assumption.

Then just follow my previous instructions. Of course, adjust references to
suit your actual situation. That should update the birtdates of the
Mastesheet with the latest birthdates from the NewDataSheet.

When done...just delete the formulas and the copy of the NewDataSheet.

Does that help?

***********
Regards,
Ron


"mlf" wrote:

I appreciate your assistance. Only, I don't think I explained myself clearly
{sorry}. The latest sheet was not copied/moved from the sheet I am working
on. It was given to me in excel, but with different columns. I am
interested primarily in comparing/updating birthdates from the new sheet.

Thanks!

"Ron Coderre" wrote:

Try this:
Assumptions:
Mastersheet has Names in Col_A, DateOfBirth in Col_B
NewDataSheet has been copied/moved to the same workbook as Mastersheet
NewDataSheet has Names in Col_A, DateOfBirth in Col_B

On the Mastersheet:
C2:
IF(ISERROR(VLOOKUP(A2,NewDataSheet!A1:B100,2,0)),B 2,VLOOKUP(A2,NewDataSheet!A1:B100,2,0))

Copy that down as far as needed
(It will use the old value, unless there is a new value in the NewDataSheet)

Then select all of the formulas in Col_C
EditCopy
Select Cell B2
EditPaste SpecialValues


Does that help?

***********
Regards,
Ron


"mlf" wrote:

Hi-

I am working off of a mastersheet with student names, addresses, date of
births, etc. I was recentely given another spreadsheet of some of the
students with their date of births, what would be the easiest way to update
the mastersheet?

Thanks in advance.
mlf

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
Excel 2003 links are not updating between workbooks Tami C Excel Worksheet Functions 3 October 11th 05 02:03 AM
Excel Not Updating Pricklyflower Excel Discussion (Misc queries) 3 October 5th 05 02:20 PM
Formulas not updating until save DKY Excel Worksheet Functions 3 September 9th 05 02:41 PM
Locked cells not updating Jamie Excel Worksheet Functions 0 February 2nd 05 05:49 PM
When updating a worksheet, how do I create a link updating the sa. Phlashh Excel Worksheet Functions 9 January 27th 05 06:05 PM


All times are GMT +1. The time now is 04:54 AM.

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"