Creating A Summary Sheet
Closed
BuckeyeJR
Posts
1
Registration date
Friday January 22, 2016
Status
Member
Last seen
January 22, 2016
-
Jan 22, 2016 at 11:06 AM
vcoolio Posts 1411 Registration date Thursday July 24, 2014 Status Moderator Last seen September 6, 2024 - Jan 23, 2016 at 06:44 PM
vcoolio Posts 1411 Registration date Thursday July 24, 2014 Status Moderator Last seen September 6, 2024 - Jan 23, 2016 at 06:44 PM
Related:
- Excel summary sheet
- Windows network commands cheat sheet - Guide
- Sheet right to left in google sheet - Guide
- Excel mod apk for pc - Download - Spreadsheets
- How to screenshot excel sheet - Guide
- How to copy data from one excel sheet to another - Guide
1 response
vcoolio
Posts
1411
Registration date
Thursday July 24, 2014
Status
Moderator
Last seen
September 6, 2024
262
Jan 23, 2016 at 06:44 PM
Jan 23, 2016 at 06:44 PM
Hello BuckeyeJR,
Perhaps the following code may help:-
The code does as you ask and following is a link to my test work book for you to peruse:-
https://www.dropbox.com/s/r3ktosbh4k2c7n1/BuckeyeJR.xlsm?dl=0
Click on the button to see it work.
I'm not sure if you wanted the data in sheet 1 cleared after the transfer of data to sheet 2 so the code just refreshes the data in sheet 2 meaning that all data in sheet 1 will remain but in sheet 2, the data will show old and new entries. Let us know if you need to change this part.
I hope that this helps.
Cheerio,
vcoolio.
Perhaps the following code may help:-
Sub CustomerAction()
Application.ScreenUpdating = False
Dim lr As Long
lr = Range("A" & Rows.Count).End(xlUp).Row
Sheet2.UsedRange.Offset(1).ClearContents
For Each cell In Range("A1:A" & lr)
If cell <= [Today()] - 7 Then
cell.EntireRow.Copy Sheet2.Range("A" & Rows.Count).End(3)(2)
End If
Next
Application.CutCopyMode = False
Application.ScreenUpdating = True
Sheet2.Select
End Sub
The code does as you ask and following is a link to my test work book for you to peruse:-
https://www.dropbox.com/s/r3ktosbh4k2c7n1/BuckeyeJR.xlsm?dl=0
Click on the button to see it work.
I'm not sure if you wanted the data in sheet 1 cleared after the transfer of data to sheet 2 so the code just refreshes the data in sheet 2 meaning that all data in sheet 1 will remain but in sheet 2, the data will show old and new entries. Let us know if you need to change this part.
I hope that this helps.
Cheerio,
vcoolio.