Em đang làm 1 cái Macro chuyển font chữ về Time New Roman. Đầu tiền ở 1 ô bất kỳ--> Chọn cả sheet--> Chuyển font--> quay về ô lúc ban đầu , em muốn khi chuyển xong nó về đúng ô ban đầu. Code của nó đây nhưng em không biết sửa thế nào cả, Mn giúp em với!
Sub Macro1()
'
' Macro1 Macro
'
'
Cells.Select
Range("H8").Activate
With Selection.Font
.Name = "Times New Roman"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
Range("I8").Select
End Sub
Sub Macro1()
'
' Macro1 Macro
'
'
Cells.Select
Range("H8").Activate
With Selection.Font
.Name = "Times New Roman"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
Range("I8").Select
End Sub


