我正在创建一个应该向用户询问文件的 VBA,然后复制第一张工作表的内容(工作表名称不是默认值,并且包含一个空格).. 之后我需要删除特定的列.. 从我需要的行中删除包含特定文本的行(区分大小写)
我现在所能做的就是加载文件,但不知道如何将数据复制到活动工作表!
FileToOpen = Application.GetOpenFilename _
(Title:="Please Choose the RTCM File", _
FileFilter:="Excel Files *.xls (*.xls),")
''
If FileToOpen = False Then
MsgBox "No file specified.", vbExclamation, "Duh!!!" ' Notification that nothing is chosen
Exit Sub
Else ' Load the file, copy the first sheet and paste it in active sheet ...
End If