Can someone help me rewrite this macro that I recorded? I want the entire row to delete from Table "HL" when value in column M = "Ready to ticket" and paste entire row in Table "RT" in same sheet.
VBA Code:
Sub Readytoticket()
'
' Readytoticket Macro
'
' Keyboard Shortcut: Ctrl+Shift+T
'
Range("B259:AA259").Select
Selection.Cut
Range("B234").Select
ActiveSheet.Paste
Range("B259:AA259").Select
Selection.ListObject.ListRows(11).Delete
End Sub