Automatically transfering rows from one sheet to another
Solved/Closed
madi9749
Posts
2
Registration date
Tuesday September 16, 2014
Status
Member
Last seen
September 26, 2014
-
Sep 16, 2014 at 02:11 AM
madi9749 Posts 2 Registration date Tuesday September 16, 2014 Status Member Last seen September 26, 2014 - Sep 26, 2014 at 12:37 AM
madi9749 Posts 2 Registration date Tuesday September 16, 2014 Status Member Last seen September 26, 2014 - Sep 26, 2014 at 12:37 AM
Related:
- Automatically transfering rows from one sheet to another
- Transfer data from one excel worksheet to another automatically - Guide
- Google sheet right to left - Guide
- Free fire id transfer facebook to google - Guide
- Download automatically while roaming - Guide
- Windows network commands cheat sheet - Guide
3 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Sep 16, 2014 at 11:05 AM
Sep 16, 2014 at 11:05 AM
Hi Madi,
A bit more info would be convenient.
Which column contains the DDL's (drop down lists)?
Provide sheet names, so you don't have to alter them.
Do you know how to implement codes?
Best regards,
Trowa
A bit more info would be convenient.
Which column contains the DDL's (drop down lists)?
Provide sheet names, so you don't have to alter them.
Do you know how to implement codes?
Best regards,
Trowa
Hi Trowa,
Colum H contains the DDL...
Sheet names are "'Estate Name'" and "'Estate Name' Cancellations".
I want to duplicate these sheets for different Estate Names as we will be dealing with more than 1 Estate Name at a time.
I do know how to impletment codes so if you could help that would be fantastic. Then I can manipulate the codes depending on the estate I'm dealing with.
Thank you so much - you are saving me a whole lot of "trial-and-errors"!!
Cheers
Colum H contains the DDL...
Sheet names are "'Estate Name'" and "'Estate Name' Cancellations".
I want to duplicate these sheets for different Estate Names as we will be dealing with more than 1 Estate Name at a time.
I do know how to impletment codes so if you could help that would be fantastic. Then I can manipulate the codes depending on the estate I'm dealing with.
Thank you so much - you are saving me a whole lot of "trial-and-errors"!!
Cheers
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Sep 23, 2014 at 10:35 AM
Sep 23, 2014 at 10:35 AM
Ok Madi,
Here you go:
Best regards,
Trowa
Here you go:
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("H:H")) Is Nothing Then Exit Sub If Target = "Cancelled" Then Target.EntireRow.Copy Sheets("Estate Name Cancellations").Range("A" & Rows.Count).End(xlUp).Offset(1, 0) End Sub
Best regards,
Trowa
madi9749
Posts
2
Registration date
Tuesday September 16, 2014
Status
Member
Last seen
September 26, 2014
Sep 26, 2014 at 12:37 AM
Sep 26, 2014 at 12:37 AM
Thank you TrowaD - that worked perfectly!!!