Thread
:
Cut and Paste entire row from one worksheet to another
View Single Post
#
2
Posted to microsoft.public.excel.worksheet.functions
Dave Peterson
external usenet poster
Posts: 35,218
Cut and Paste entire row from one worksheet to another
Tell excel to stop looking for changes:
Option Explicit
Public Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Value = "Complete" Then
Application.EnableEvents = False
Target.EntireRow.Cut
Closed.Paste
Application.EnableEvents = True
End If
End Sub
wrote:
Hello all,
I am attempting to cut and paste an entire row from a change action
from one worksheet to one named "Closed" with the current script:
Public Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Value = "Complete" Then
Target.EntireRow.Cut
Closed.Paste
End If
End Sub
This works but after pasting the row, it throws an error saying target
does not equal anything essentially. Also, this script is embedded in
the worksheet.
Is there any way to fix this?
Any and all help is welcome!
--
Dave Peterson
Reply With Quote
Dave Peterson
View Public Profile
Find all posts by Dave Peterson