Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Macro Help - Updating Master List

I have a Master List of contacts in 1 workbook that needs to be updated on a
weekday, daily basis from another workbook containing worksheets for each day
of the month. The daily worksheet and the Master List are identical:

A B C D E F G H I
J K
Status Co # Street City St Zip Source Product Result Next
Contact Date

I want to update A & K on the Master List automatically when data is changed
in the daily worksheets. Is there a way to do this automatically using a
macro?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default Macro Help - Updating Master List

Using the Worksheet_Change event might be a little too much activity in code
running, depending on how many changes occur during a given user input.
However, the Worksheet_Deactivate event would allow the update to occur
after changes are made and the user exits that worksheet. The code would
need to be in the sheet code module of the daily worksheets.

Private Sub Worksheet_Deactivate()
'Call the data transfer macro or code to do the transfer here.
End Sub


"relpi98" wrote in message
...
I have a Master List of contacts in 1 workbook that needs to be updated on
a
weekday, daily basis from another workbook containing worksheets for each
day
of the month. The daily worksheet and the Master List are identical:

A B C D E F G H I
J K
Status Co # Street City St Zip Source Product Result Next
Contact Date

I want to update A & K on the Master List automatically when data is
changed
in the daily worksheets. Is there a way to do this automatically using a
macro?



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
Updating from master Markv Excel Discussion (Misc queries) 3 June 10th 08 01:31 PM
Updating Master Log records Sinner Excel Worksheet Functions 7 June 18th 07 01:39 PM
Is it possible to setup a self-updating master list? my brain hurts Excel Discussion (Misc queries) 1 July 29th 05 07:17 PM
updating data in rows from master list Allen Nance Excel Programming 7 September 18th 03 06:18 PM
updating data in rows from master list Allen[_8_] Excel Programming 0 September 17th 03 09:42 PM


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