Các anh, chị xem đoạn code của e ạ :
CODE này em gán vào 1 button nhằm mục đích dán dữ liệu đã copy từ 1 bảng tính excel khác, code báo lỗi tại dòng
do sau khi chạy xong các dòng code định vị vị trí cần paste thì clipboard bị xóa luôn. Em đã thử với nguồn dữ liệu khác ngoài excel như word thì code chạy bình thường.
Các anh các chị giúp em ạ. Em cảm ơn
Mã:
Sub AutoCopyE()
If MsgBox("Make sure that you have copied data from MCmic" & vbNewLine & "App going to delete the current data" & vbNewLine & "Are you sure to continue?", vbYesNo, "TN team - https://tnmaker.wordpress.com") = vbNo Then
Exit Sub
End If
Application.ScreenUpdating = False
Range("Ans_Table").Select
a = ActiveCell.Address
Selection.Resize(Selection.Rows.Count, 1 + Selection.Columns.Count).Offset(, -1).Select
Selection.ClearContents
Application.DisplayAlerts = False
ActiveSheet.Paste
Application.DisplayAlerts = True
ActiveCell.Offset(-1, -2).Select
Selection.Formula = "=" & a
Application.ScreenUpdating = True
End Sub
Mã:
ActiveSheet.Paste
Các anh các chị giúp em ạ. Em cảm ơn