Sub test()
thesentence = InputBox("Type the filename with full extension", "Raw Data File")
Range("A1").Value = thesentence
If Dir("thesentence") <> "" Then
MsgBox "File exists."
Else
MsgBox "File doesn't exist."
End If
End Sub
В этом случае, когда я выбираю текстовое значение из поля ввода, он не работает. Если, однако, удалите "the sentence"
из If Dir()
и замените его фактическим именем в коде, оно работает. Может ли кто-нибудь помочь?