Em có 1 cái code VBA này, các anh chị xem thử có thể aá dụng được không ?
nếu bạn thích dùng vba thì thử cái này xem có được ko?
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
On Error GoTo ErrHandler
Application.EnableEvents = False
EndRow = Range("a" & Rows.Count).End(xlUp).Row
If Not Intersect(Target, Range("A4:A" & EndRow)) Is Nothing Then
Target.Offset(-1, 5).Resize(2, 10).Select
Selection.FillDown
Target.Offset(1, 0).Select 'neu ban enter khi nhap lieu xong
End If
ErrHandler:
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub