Em mới tập VBA nên xin các sư huynh giúp giùm em vấn đề này:
Sau khi em thực hiện macro như sau trong Excell 2003 thì cursor đưa về đầu dòng:
Sub ClearRow()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
ActiveCell.Rows.EntireRow.Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Delete Shift:=xlUp
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub
Em muốn chọn lại cell cuối cùng trước khi thi hành macro, mong các sư huynh giúp em.
Sau khi em thực hiện macro như sau trong Excell 2003 thì cursor đưa về đầu dòng:
Sub ClearRow()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
ActiveCell.Rows.EntireRow.Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Delete Shift:=xlUp
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub
Em muốn chọn lại cell cuối cùng trước khi thi hành macro, mong các sư huynh giúp em.