libre calc에이 루틴을 수행하는 동등한 매크로 / vba가 있습니까? -경로에서 xls 파일을 읽고 / 열고 읽은 시트를 일괄 가져 오기 / 복사하고 현재 열려있는 통합 문서와 병합합니다. MS Excel에서 사용한 vba는 다음과 같습니다. 미리 감사드립니다
Sub Consolidate_Sheets()
'Folder Path to read the xlsx files from
Path = "F:\WIP2\Below 25\"
filename = Dir(Path & "*.xlsx")
Do While filename <> ""
Workbooks.Open filename:=Path & filename, ReadOnly:=True
For Each sheet In ActiveWorkbook.Sheets
'import/copy sheets from to read xlsx files
sheet.Copy After:=ThisWorkbook.Sheets(1)
Next sheet
Workbooks(filename).Close
filename = Dir()
Loop
End Sub