Chào mọi người, Mình mới học VBA nên chưa có nhiều kiến thức cơ bản. Hiện tại mình đang có học mót 1 đoạn VBA để thay thế dữ liệu trong word. Đoạn mã chạy tốt tuy nhiên mình muốn lưu file trong 1 thư mục riêng biệt thì bị lỗi. Anh chị em nào rành xem giúp với mình cảm ơn trước 

Mã:
Sub Test()
Dim sohang As Long
Dim socot As Long
Dim j As Long
Dim Teamplate As Object
Dim t As Object
sohang = 3
socot = 2
With CreateObject("word.application")
.Visible = True
Set Template = .Documents.Open("D:\Work\BIDV\ABC.docx")
Set t = Template.Content
For j = 1 To sohang
t.Find.Execute _
FindText:=Sheet1.Cells(j, 1).Value, _
ReplaceWith:=Sheet1.Cells(j, 2).Value, _
Replace:=wdReplaceAll
Next
Template.SaveAs Filename:=ThisWorkbook.Path & "\" & Sheet1.Cells(1, 2).Value & "\" & "123.docx"
.Quit
End With
Set t = Nothing
Set Template = Nothing
End Sub