Pasting Values using "Private Sub Worksheet_Change(ByVal Target As Range)"

samuerle

New Member
Joined
Sep 24, 2019
Messages
2
Hey all,
Very novice when it comes to VBA, but I'm pretty good at copy/paste and brute forcing until something works! I managed to come up with this code that allows multiple values to be selected from drop downs (target.column section) as well as copying and pasting a row from an "Open" tab to a "COMPLETED" tab once the completed? field (column 22) is marked "Yes".

The issue is when it moves the row to the COMPLETED tab, it pastes formulas, which destroys one column. Looking online, I thought the answer would be to add .PasteSpecial xlPasteValue to the end of line 11 - Range("A" & Target.Row &":W" & Target.Row).CopySheets("Completed").Range("A" & LrowCompleted + 1)
but alas this does not work. I'm open to any ideas to solve this, including hidden columns and whatnot. Thanks so much in advance!!!

Rich (BB code):
Private Sub Worksheet_Change(ByVal Target As Range)
    On Error ResumeNext
Dim Oldvalue As String
Dim Newvalue As String
   Application.EnableEvents = False
    'If Cell that isedited is in column U and the value is completed then
    If Target.Column =22 And Target.Value = "Yes " Then
        'Define lastrow on completed worksheet to know where to place the row of data
        LrowCompleted= Sheets("COMPLETED").Cells(Rows.Count, "A").End(xlUp).Row
        'Copy andpaste data
        Range("A" &Target.Row & ":W" & Target.Row).CopySheets("Completed").Range("A" & LrowCompleted + 1)
        'Delete Rowfrom Project List
       Range("A" & Target.Row & ":W" &Target.Row).Delete xlShiftUp
    End If
   Application.EnableEvents = True
On Error GoTo Exitsub
If Target.Column = 2 Or Target.Column = 3 Or Target.Column =4 Or Target.Column = 7 Or Target.Column = 10 Or Target.Column = 11 OrTarget.Column = 12 Or Target.Column = 13 Or Target.Column = 14 Or Target.Column= 15 Or Target.Column = 18 Or Target.Column = 19 Then
  IfTarget.SpecialCells(xlCellTypeAllValidation) Is Nothing Then
    GoTo Exitsub
  Else: IfTarget.Value = "" Then GoTo Exitsub Else
   Application.EnableEvents = False
    Newvalue =Target.Value
    Application.Undo
    Oldvalue =Target.Value
      If Oldvalue ="" Then
        Target.Value =Newvalue
      Else
        If InStr(1,Oldvalue, Newvalue) = 0 Then
           Target.Value = Oldvalue & ", " & Newvalue
      Else:
        Target.Value =Oldvalue
      End If
    End If
  End If
End If
Application.EnableEvents = True
Exitsub:
Application.EnableEvents = True

End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
I'm really lucky I'm married to a software engineer! I was close - apparently ".copy" and "sheets" needed to be on separate lines!
Here's the final, working code.

Rich (BB code):
Private Sub Worksheet_Change(ByVal Target As Range)
    On Error Resume Next
Dim Oldvalue As String
Dim Newvalue As String
    Application.EnableEvents = False
    'If Cell that is edited is in column U and the value is completed then
    If Target.Column = 22 And Target.Value = "Yes " Then
        'Define last row on completed worksheet to know where to place the row of data
        LrowCompleted = Sheets("COMPLETED").Cells(Rows.Count, "A").End(xlUp).Row
        'Copy and paste data
        Range("A" & Target.Row & ":W" & Target.Row).Copy
        Sheets("Completed").Range("A" & LrowCompleted + 1).PasteSpecial (xlPasteValues)
        'Delete Row from Project List
        Range("A" & Target.Row & ":W" & Target.Row).Delete xlShiftUp
    End If
    Application.EnableEvents = True
On Error GoTo Exitsub
If Target.Column = 2 Or Target.Column = 3 Or Target.Column = 4 Or Target.Column = 7 Or Target.Column = 10 Or Target.Column = 11 Or Target.Column = 12 Or Target.Column = 13 Or Target.Column = 14 Or Target.Column = 15 Or Target.Column = 18 Or Target.Column = 19 Then
  If Target.SpecialCells(xlCellTypeAllValidation) Is Nothing Then
    GoTo Exitsub
  Else: If Target.Value = "" Then GoTo Exitsub Else
    Application.EnableEvents = False
    Newvalue = Target.Value
    Application.Undo
    Oldvalue = Target.Value
      If Oldvalue = "" Then
        Target.Value = Newvalue
      Else
        If InStr(1, Oldvalue, Newvalue) = 0 Then
            Target.Value = Oldvalue & ", " & Newvalue
      Else:
        Target.Value = Oldvalue
      End If
    End If
  End If
End If
Application.EnableEvents = True
Exitsub:
Application.EnableEvents = True




End Sub
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,812
Members
449,048
Latest member
greyangel23

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top