Move 'old' rows to different workbook

BethieBCB

New Member
Joined
May 11, 2007
Messages
5
I created a spreadsheet that tracks modifications made to hospital accounts. Once an account has been corrected, the user clicks a command button and cell U in the active row fills with the current date and time ((now)) according to a macro I created.

After 5 business days of this cell being populated, I would like that account to "fall off" the spreadsheet and move to another workbook. How do I create a macro to check column "U" for every filled row to see if the current date and time is 5 days past the date / time stamp in that cell? And for the cells in column "U" that do have a 5-day difference, how do I move those rows to a different workbook (and not leave a blank row in my spreadsheet)?

I would love it if this macro could run automatically once or twice a day, but would be content with having to manually start it somehow if necessary.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
BethieBCB,

I'm still plugging along with trying to grasp VBA so the date aspect I'm not sure but will work on it. For now if you don't mind using a helper column this will work. In column V when you type "done" this macro will cut the row and move it to worksheet Projects_Completed. You can change that title to fit your needs. I believe this code is courtesy VoG.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim LR As Long
If Target.Count > 1 Then Exit Sub
If Target.Column = 22 And LCase(Target.Value) = "done" Then
    Application.EnableEvents = False
    With Sheets("Projects_Completed")
        LR = .Range("A" & Rows.Count).End(xlUp).Row
        Target.EntireRow.Copy Destination:=.Range("A" & LR + 1)
        Target.EntireRow.Delete
        Application.CutCopyMode = False
        Application.EnableEvents = True
    End With
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

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