OK, I have tried but I've got lost - Any chance you could have a look at the code for me - I've done everything I can but I'm limited.
If you sort this I will be your friend for life
Many thanks
OK, I have tried but I've got lost - Any chance you could have a look at the code for me - I've done everything I can but I'm limited.
If you sort this I will be your friend for life
Many thanks
Here is a better example, briefly tested, but not fully developed for all of your controls on the form. This should get you going. Note that I am referencing sheet codenames and not worksheet names (matter of preference).
![]()
Dim lrow As Long, ws As Worksheet Select Case Me.CheckBox1.Value Case True 'Extended Terms lrow = Sheet4.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row Set ws = Sheet4 Case False 'Same Terms lrow = Sheet2.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row Set ws = Sheet2 End Select With Me ws.Cells(lrow, 1) = .Account.Value ws.Cells(lrow, 2) = .Surname.Value End With
Palmetto
Do you know . . . ?
You can leave feedback and add to the reputation of all who contributed a helpful response to your solution by clicking the star icon located at the left in one of their post in this thread.
That's Just Brilliant - The really good thing about this is I'm learning stuff as well - and managing to remember it for future reference- I'm also beginning to understand how the code works. Thanks so much again
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks