どのようにこのようなものについて:
Sub foo()
Dim fd As FileDialog
Dim fName As String ' Includes full path
Dim fChosen As Integer
Dim fNameFile As String 'Only the name of the file
Set fd = Application.FileDialog(msoFileDialogFilePicker) 'open dialog box
fd.Title = "Please select file" 'dialog Title
fd.InitialFileName = "C:\Users\" 'Path to initiate Dialog box
'fd.InitialFileName = ThisWorkbook.Path & "\" 'alternate initial path
fChosen = fd.Show
fd.Filters.Clear
'fd.Filters.Add "CSV files", "*.csv" 'add filters to only show this type of file
fd.Filters.Add "Text files", "*.txt" 'in this case only txt files will be selectable
If fChosen <> -1 Then
MsgBox "You Cancelled, nothing done!", vbInformation
Else
fName = Right$(fd.SelectedItems(1), Len(fd.SelectedItems(1)) - InStrRev(fd.SelectedItems(1), "\")) 'get full path of file, then remove anything prior to \ to get filename
Position = InStr(fName, ".") 'get the position of the extension
If Position > 0 Then Extension = Right(fName, Len(fName) - Position + 1) 'get the actual extension of the file
fName = Replace(fName, Extension, "") 'remove that extenstion
Sheets("TEXT").Range("AZ2").Value = fName 'enter the file name to your chosen range
End If
End Sub
ありがとうございましたが、実際に私は、VBAのコーディングに非常に新しいです。コードに実装する方法を教えてくれればとても助かります。 – Sanoj
コードで同じことを説明できますか?私はシート "テキスト"のセルAZ2に反映するファイル名が必要です。 – Sanoj