我需要将多个工作表中的数据复制并粘贴到主工作簿,但我需要在复制数据之前打开所有工作簿
''This one I use for the opening the documents
ScanWBName = Application.GetOpenFilename _
("CSV (*.csv),*.csv", , "Select the " & FirstChart & " Scan File")
If ScanWBName = False Then
Exit Sub
End If
''This one I used for the selecting all the datas in multiple worksheet
lLastRow = Cells(ActiveSheet.Rows.Count, "A").End(xlUp).Row
我写了这个,但我的问题是我需要在打开它之后关闭所有文件。
主要问题
答案 0 :(得分:0)