Link to home
Start Free TrialLog in
Avatar of Adam Elsheimer
Adam ElsheimerFlag for Germany

asked on

Merge wbs to Master wb - Control the startup message about updating linked workbooks and copy only values not formulas

I have to copy data wbs to a master wb. The simple macro below works fine.

Q1: First, in the Data wbs there are  links to another wbs. I don't know how to control the startup message about updating linked workbooks in Excel when I run the macro. I have changed the Excel Options to avoid the message but  no better result. How can I change the macro that it copies from closed data wbs?

Q2:  Second, I would like copy only the values, no formulars to the master wb.
Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial


Sub simpleXlsMerger()
Dim bookList As Workbook
Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As Object
Application.ScreenUpdating = False
Set mergeObj = CreateObject("Scripting.FileSystemObject")
 
'change folder path of excel files here
Set dirObj = mergeObj.Getfolder("C:\Users\Adam\Desktop\Verbundaktion\")
Set filesObj = dirObj.Files
For Each everyObj In filesObj
Set bookList = Workbooks.Open(everyObj)
 
Range("A3:IV" & Range("A65536").End(xlUp).Row).Copy
ThisWorkbook.Worksheets(1).Activate
 
Range("A65536").End(xlUp).Offset(1, 0).PasteSpecial
Application.CutCopyMode = False
bookList.Close
Next
End Sub

Open in new window


Thank you.

Regards,

Adam

Source
Avatar of Shums Faruk
Shums Faruk
Flag of India image

Hi Adam,

Please try below:
Sub simpleXlsMerger()
Dim bookList As Workbook
Dim LR As Long
Dim mergeObj As Object, dirObj As Object, filesObj As Object, everyObj As Object
Application.ScreenUpdating = False
Set mergeObj = CreateObject("Scripting.FileSystemObject")
 
'change folder path of excel files here
Set dirObj = mergeObj.Getfolder("C:\Users\Adam\Desktop\Verbundaktion\")
Set filesObj = dirObj.Files
For Each everyObj In filesObj
Application.AskToUpdateLinks = False
Application.DisplayAlerts = False
Set bookList = Workbooks.Open(everyObj)
Application.AskToUpdateLinks = True
Application.DisplayAlerts = True

Range("A3:IV" & Range("A65536").End(xlUp).Row).Copy
ThisWorkbook.Worksheets(1).Activate
LR = Worksheets(1).Range("A" & Rows.Count).End(xlUp).Row
Worksheets(1).Range("A" & LR + 1).PasteSpecial xlPasteValues
Application.CutCopyMode = False
bookList.Close
Next
End Sub

Open in new window

Avatar of Adam Elsheimer

ASKER

Shums, many thanks for your uncomplicated help.

Update Message and paste works fine.  I get know the save messagebox. I am so sorry to forget to mention this in my description.

User generated image
Regards,

Adam
ASKER CERTIFIED SOLUTION
Avatar of Shums Faruk
Shums Faruk
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry, one issue more.

Q: Can the macro overwrite the existing values please. When I update the Master file I get Duplicates.

User generated image
Thanks

Regards,

Adam
Sorry Adam this is different issue, I need to write new code.
Shums, many thanks for your very fast and uncomplicated help.

Regards,

Adam
You're Welcome Adam! Please to help.