Hi Martinus,
You can try this:
Public Sub UpdateArticelIfo()
Dim wbkArticle As Workbook
Dim intRow As Integer
Dim shtInfo As Worksheet
Dim strSheet As String
Set shtInfo = ActiveSheet
intRow = 1
Do While Not IsEmpty(Cells(intRow, 1))
shtInfo.Cells(intRow, 2).Select
strSheet = ActiveCell.Value
ThisWorkbook.Sheets(strSheet).Select
ActiveSheet.Cells(1, 1).Select
ActiveSheet.UsedRange.ClearContents
ActiveSheet.UsedRange.ClearFormats
Set wbkArticle = Workbooks.Open(shtInfo.Cells(intRow, 1), ReadOnly:=True)
wbkArticle.Sheets(1).Select
ActiveSheet.UsedRange.Copy
ThisWorkbook.Activate
ActiveSheet.Paste
wbkArticle.Saved = True
wbkArticle.Close savechanges:=False
intRow = intRow + 1
Loop
End Sub
Hoopthis helps,
Bookmarks