Link Worksheet Change Event to Button

kristinh

New Member
Joined
May 3, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I am new to VBA code. I wrote a worksheet change event that copies rows from one tab to another based on whether there is a Y is a certain column. It works great, but it is slow. I would like to modify the code so the rows are copied over upon click of a button instead of each change... but I don't know where to begin or how to assign a button to this?

This is my worksheet:

1714768110197.png


This is my code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.CountLarge > 1 Then Exit Sub
If Target.Column <> 6 Then Exit Sub
If Target = "Y" Then
Range("A" & Target.Row).Resize(, 5).Copy Sheets("GP Import").Cells(Sheets("GP Import").Rows.Count, "A").End(xlUp).Offset(1)
End If
Application.ScreenUpdating = False
End Sub

(Note that the button Generate Accounts is not actually doing anything at this point)
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Below is a revised version that replaces the event macro.
VBA Code:
Option Explicit
Sub Update_If_Y()
    Dim i     As Long
    Dim lr    As Long
    lr = Cells(Rows.Count, 6).End(xlUp).Row
    Application.ScreenUpdating = True
    For i = 12 To lr
        If Cells(i, 6) = "Y" Then
            Range("A" & i).Resize(, 5).Copy Sheets("GP Import").Cells(Sheets("GP Import").Rows.Count, "A").End(xlUp).Offset(1)
        End If
    Next i
    Application.ScreenUpdating = True
End Sub
Keep in mind that when it starts, unlike before, the macro will process all rows where it finds a Y, even if it has been run before. Instead, the event macro processed each row only once, and only when a Y was entered.
 
Last edited:
Upvote 0
Solution
Wow, that worked perfect. I never in a million years would have been able to do that myself. Can I ask you go about learning this? I want to be able to automate my accounting workbooks with VBA, but my degree is in accounting. Is it even realistic for someone to learn VBA as a hobby/side job?

Thank you so much for your time and help!
 
Upvote 0
Thanks for the positive feedback(y), glad having been of some help. By the way, you probably need to mark this thread as [Solved].
Yes, as far as learning VBA is concerned this can be done as a "hobby", all you have to do is insist by searching the web for snippets to insert and adapt to your macros. Then, always on the web, you will find many guides that explain how to put together all the information found. And, when you don't understand/succeed, ask in the Forums where you will always find help;).
 
Upvote 0

Forum statistics

Threads
1,216,082
Messages
6,128,717
Members
449,465
Latest member
TAKLAM

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