Hello njohnston,Originally Posted by njohnston
Welcome to the VBForums.com![]()
for a start, where is the button placed? in the master excel file or in any other file?
do you know how to record a macro? ths can be very helpfull for you when you'll build your own macro.
do you have one workbook or 50 as you mentioned?
VB Code:
Range("A3").Select Range(Selection, Selection.End(xlDown)).Select Selection.Copy Range("D3").Select ActiveSheet.Paste
this simple macro copies all the data from row 3 col A to col D starting from row 3 in the same Sheet...
Is that you need for a start?
Best Regards,
ERAN




Reply With Quote