Kode i samlerfilen ark1: Model med testfiler kan tilsendes - hvis der sendesen mail - @-adresse under profil.
Const hentFraSti = "C:\Documents and Settings\pb.KHNBPB\Skrivebord\Ransborg\" 'JUSTERES Const hentFraMappeNavn = "mappeMed100" 'JUSTERES Dim xlsFil As Object
Dim ræk As Long Public Sub samlingAfRegneark() Application.ScreenUpdating = False ræk = 1 traverserMappen hentFraSti & hentFraMappeNavn
Application.ScreenUpdating = True
ActiveSheet.Columns.AutoFit
MsgBox ("Samlingen er udført") End Sub Private Sub traverserMappen(mappeNavn) Dim fs, f, f1, fc
On Error GoTo fejl
Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFolder(mappeNavn) Set fc = f.Files
For Each f1 In fc filnavn = f1.Name Set xlsFil = CreateObject("Excel.Application") With xlsFil .Workbooks.Open mappeNavn + "\" + filnavn .Sheets(1).Range("A1:J100").Select .Selection.Copy
kopierTilSamling
.Application.CutCopyMode = False .Application.Quit Set xlsFil = Nothing End With Next Exit Sub
With xlsFil .Application.CutCopyMode = False .Application.Quit End With Set xlsFil = Nothing End Sub Private Sub kopierTilSamling() With ActiveSheet .Range("A" & CStr(ræk)).Select .Paste ræk = ræk + 100 End With End Sub
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.