Excel Automatic Data Updating

shmuelsash

New Member
Joined
Nov 24, 2016
Messages
2
I have an excel list of about 5000 alumni with numerous columns of different information.


I frequently use this list to create smaller more focused lists (e.g. just from a specific location). These lists are then shared on google docs to a small group of staff that use the information to call the alumni and then update the information into the document.


Is it possible that the information that is entered into these smaller lists can be automatically reflected into the main document? If yes, how?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
say you have a new address for fred in a sub list, then the easiest way is to use a simple macro to copy ALL Fred data from the small list to the master list
 
Upvote 0
bill19 high stanytwnsid44 station roadleicester
sid44 station roadleicester
fred99 high stanytwn
this macro copies the new sid info into the master list
For j = 1 To 5
If Cells(j, 11) = "" Then GoTo 100
For k = 1 To 5
If Cells(k, 1) <> Cells(j, 11) Then GoTo 50
Cells(k, 2) = Cells(j, 12)
Cells(k, 3) = Cells(j, 13)
50 Next k
Next j
original sid info100 End Sub
sid39 high stanytwn

<colgroup><col><col><col><col span="8"><col><col span="2"></colgroup><tbody>
</tbody>
 
Upvote 0
bill19 high stanytwnsid44 station roadleicester
sid44 station roadleicester
fred99 high stanytwn
this macro copies the new sid info into the master list
For j = 1 To 5
If Cells(j, 11) = "" Then GoTo 100
For k = 1 To 5
If Cells(k, 1) <> Cells(j, 11) Then GoTo 50
Cells(k, 2) = Cells(j, 12)
Cells(k, 3) = Cells(j, 13)
50 Next k
Next j
original sid info100 End Sub
sid39 high stanytwn

<tbody>
</tbody>

I hope you'll be my savior! Where do I put this macro? I dont know how to use macros...
 
Upvote 0
do this on a new spreadsheet

tools, macro, record new macro

ok

select A1, stop the macro

tools, macros macro1, edit

you will see one line of code starting Range

cursor to left of R delete the line of code
now do this again on YOUR spreadsheet
paste my code in

delete the last end sub

then back to spreadsheet, tools, macro, macro1, run
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top