Move a row from one sheet to another without the conditional fromatting

Phily50

New Member
Joined
Jul 8, 2013
Messages
28
Office Version
  1. 365
Platform
  1. Windows
Hello, Excel newbie here :)

I have adapted this little bit of vba code from somewhere I googled and it works very well:


VBA Code:
Private Sub CCOk_Click()

Dim Answer As Integer
Dim NewSht As Worksheet
Dim NewRow As Long
Dim ThisRow As Long

Answer = MsgBox("You have selected to cancel " & UCase(ActiveCell.Value) & vbNewLine & vbNewLine & "This will move the row to Cancelled and remove ALL data from this page", vbExclamation + vbYesNo + vbDefaultButton2, "Are you sure?")

    If Answer = vbYes Then
        Set NewSht = Sheets("Cancelled")

            Application.EnableEvents = False
            Application.Calculation = xlCalculationManual
            ThisRow = ActiveCell.Row
                
                NewRow = NewSht.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
                Cells(ThisRow, "A").Copy NewSht.Cells(NewRow, "A")
                Cells(ThisRow, "B").Copy NewSht.Cells(NewRow, "B")
                Cells(ThisRow, "C").Copy NewSht.Cells(NewRow, "C")
                Cells(ThisRow, "D").Copy NewSht.Cells(NewRow, "D")
                Cells(ThisRow, "E").Copy NewSht.Cells(NewRow, "E")
                                  
                ActiveCell.EntireRow.Delete
           
                    Application.CutCopyMode = False
                    Application.EnableEvents = True
                    Application.Calculation = xlCalculationAutomatic
        Else
        'do nothing
    End If
    
frmCancelCHIS.Hide
End Sub

However, it copies the conditional formatting and then screws up the conditional formatting in the sheet it is copying to. Is there a way I can copy just the values as listed in the code and then paste them into the destination sheet so that it follows the rules as to where they are being copied to.

Hope this makes sense!
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Since you're only interested in the values, instead of copying a (source) range to another (target) range, you could assign the value property of the source range to the value property of the target range.
So code like this:
VBA Code:
Cells(ThisRow, "A").Copy NewSht.Cells(NewRow, "A")

could look like this:
VBA Code:
NewSht.Cells(NewRow, "A").Value = Cells(ThisRow, "A").Value
 
Upvote 0
Solution
Fantastic, works perfectly. Thanks!

Follow up question lol.....

That bit of code deletes the row that the data was in. In another sheet I have the following formulas:

Excel Formula:
=IF(SHEET2!A4="","",(INDEX(SHEET2!A4:J4,MATCH(TRUE,INDEX((SHEET2!A4:J4<>0),0),0))))
Excel Formula:
=IF(SHEET2!A4="","",(LOOKUP(2,1/(SHEET2!A4:I4<>""),SHEET2!A4:I4)))
Excel Formula:
=IF(SHEET2!A4="","",(LOOKUP(2,1/(SHEET2!A4:J4<>""),SHEET2!A4:J4)))


Which basically looks up the 1st and last empty cells in the specified ranges and pulls it into a list for use elsewhere. When I delete the row using that function above, I encounter the #REF error because the row no longer exists. Is there a way to resolve this by changing the formula?
 
Upvote 0
You are welcome and thanks for letting me know.

When I delete the row using that function above, I encounter the #REF error because the row no longer exists. Is there a way to resolve this

As this is an entirely different question, I think it's reasonable to ask you to start a new thread.
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,317
Members
449,081
Latest member
tanurai

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