+ Reply to Thread
Results 1 to 7 of 7

Cut and copy Records in another sheet.

Hybrid View

  1. #1
    Registered User
    Join Date
    12-03-2014
    Location
    Manchester, England
    MS-Off Ver
    2007
    Posts
    23

    Question Cut and copy Records in another sheet.

    Hello everyone,

    I have a issue here with a code. This code erase the record but what I want is to cut and copy the record in another sheet. I have tried but nothing till the moment. Sure you can help me.

    
    'declare the variables
        Dim findvalue As Range, DelR As Range
        Dim cDelete As VbMsgBoxResult
        Dim cNum As Integer
        Dim FirstAddress As String
        Dim nextrow As Range
        
    TransferTableFromAccess
    
    'check for values
        If Reg1.Value = "" Or Reg9.Value = "" Then
            MsgBox "There is not data to delete.", vbExclamation, "Training Database"
            Exit Sub
        End If
    'give the user a chance to change their mind
        cDelete = MsgBox("You are about to delete this employee and all of their training.", vbYesNo + vbDefaultButton2 + vbQuestion, "Training Database")
        If cDelete = vbYes Then
    'find the first value
            Set findvalue = Sheets("Data").Range("C:C").Find(What:=Reg0, LookIn:=xlValues)
            If Not findvalue Is Nothing Then
                Set DelR = findvalue
                FirstAddress = findvalue.Address
                Do
                    Set findvalue = Sheets("Data").Range("C:C").FindNext(findvalue)
                    Set DelR = Union(DelR, findvalue)
                Loop While FirstAddress <> findvalue.Address
            End If
            If Not DelR Is Nothing Then DelR.EntireRow.delete
        End If
    'clear the controls
        cNum = 9
        For X = 0 To cNum
            Me.Controls("Reg" & X).Value = ""
        Next
    'run the filter
        AdvFilter
    'refresh the listbox
        lstLookup.RowSource = ""
        lstLookup.RowSource = "Filter_Staff"
    
    delete
    PushTableToAccess
    Thanks everyone
    Edward

  2. #2
    Forum Expert
    Join Date
    11-29-2010
    Location
    Ukraine
    MS-Off Ver
    Excel 2019
    Posts
    4,168

    Re: Cut and copy Records in another sheet.

    hi Edward, if you meant "cut and paste" then change this:

    If Not DelR Is Nothing Then DelR.EntireRow.delete
    to

    If Not DelR Is Nothing Then
        DelR.EntireRow.Copy Sheets.Add.Range("a1")
        DelR.EntireRow.Delete
    End If

  3. #3
    Registered User
    Join Date
    12-03-2014
    Location
    Manchester, England
    MS-Off Ver
    2007
    Posts
    23

    Re: Cut and copy Records in another sheet.

    Thanks watersev,

    I am using now a nextrow for an expandable list and I am getting the error 438. I am not used to this code.

    
            Set nextrow = Sheets("DataOld").Cells(Rows.Count, 3).End(xlUp).Offset(1, 0)
    
            If Not DelR Is Nothing Then
                DelR.EntireRow.Copy Sheets.Add.nextrow <--- here is the error
                DelR.EntireRow.delete
            End If
    What do think is the correct structure?

    Thanks

  4. #4
    Forum Expert
    Join Date
    11-29-2010
    Location
    Ukraine
    MS-Off Ver
    Excel 2019
    Posts
    4,168

    Re: Cut and copy Records in another sheet.

    DelR.EntireRow.Copy nextrow

  5. #5
    Registered User
    Join Date
    12-03-2014
    Location
    Manchester, England
    MS-Off Ver
    2007
    Posts
    23

    Re: Cut and copy Records in another sheet.

    The thing is that nextrow and DelR dont have the same area and I am getting the error 1004 with that code.

  6. #6
    Forum Expert
    Join Date
    11-29-2010
    Location
    Ukraine
    MS-Off Ver
    Excel 2019
    Posts
    4,168

    Re: Cut and copy Records in another sheet.

    try this out:

    DelR.EntireRow.Copy nextrow.EntireRow

  7. #7
    Registered User
    Join Date
    12-03-2014
    Location
    Manchester, England
    MS-Off Ver
    2007
    Posts
    23

    Re: Cut and copy Records in another sheet.

    Thanks! Thats perfect!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Copy/Paste New Records to New Row on Seperate Sheet
    By dundraburl in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-14-2015, 09:08 PM
  2. Replies: 2
    Last Post: 12-20-2013, 01:09 PM
  3. Copy all records with same date to new sheet
    By soky in forum Excel General
    Replies: 3
    Last Post: 03-20-2012, 05:08 AM
  4. Replies: 8
    Last Post: 10-31-2008, 12:48 PM
  5. Copy records with the same value in a column to a new sheet or workbook
    By reeyasen in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-30-2008, 11:29 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1