9
Перевірте, чи існує файл за допомогою VBA
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 У цьому випадку, коли я виймаю текстове значення з поля введення, воно не працює. Якщо ж, якщо …