Dim oWbk As Workbook Dim sFil As String Dim sPath As String
sPath = "mappe:mappe:mappe:" 'location of files
ChDir sPath
sFil = Dir(sPath, MacID("XLSX")) 'change or add formats
Do While sFil <> "" 'will start LOOP until all files in folder sPath have been looped through
If Left(sFil, 10) <> "samlet fil" Then
Set oWbk = Workbooks.Open(sPath & sFil) 'opens the file
' do something
oWbk.Close False 'close the workbook, saving changes
End If
sFil = Dir
Loop ' End of LOOP
End Sub
Synes godt om
Ny brugerNybegynder
Din løsning...
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.