ユーザーにファイルを要求し、最初のシートの内容をコピーする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