Kiểm tra sự tồn tại của 1 file trong Excel sử dụng hàm tự tạo trong VBA
Public Function FileExists(fname) As Boolean
Dim x As String
x = Dir(fname)
If x <> "" Then FileExists = True _
Else FileExists = False
End Function
Sau khi insert code vào module.
Giả sử ô A1 của bạn có dạng chuỗi là...