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 이 경우 입력 상자에서 텍스트 값을 픽업해도 작동하지 않습니다.단, 삭제한 경우"the sentence"if부터]Dir()코드에 있는 실제 이름으로 대체하면 효과가 있어요누가 좀 도와줄래요?코드에는 다음이 포함됩니다.Dir("thesentence")어느 쪽인가 하면..