Excel Macro

hartless43

New Member
Joined
Dec 28, 2022
Messages
41
Office Version
  1. 365
Platform
  1. Windows
I would like to run a Marco based on a cell value from the WorkSheet_Change.
The code would be similar to below. I know this is simple as simple can be, but I can't get it to work.

Private Sub Worksheet_Change(ByVal Target As Range)
If Range("G11") = 45 Then
(Macro name here)
End Sub

Thanks, Jerry
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "G11" Then
    If Target.Value = 45 Then
        (Macro name here)
    End If
End If
End Sub
 
Upvote 0
Here is how I would do it:
"Mom" is the name of the script you want to run
Mom is a Module script
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$G$11" Then
If Target.Value = "45" Then Call Mom
End If
End Sub
 
Upvote 0
Solution
Try:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "G11" Then
    If Target.Value = 45 Then
        (Macro name here)
    End If
End If
End Sub
Thanks for your reply. However, this did not do what I wanted.
 
Upvote 0
Try:
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(0, 0) = "G11" Then
    If Target.Value = 45 Then
        (Macro name here)
    End If
End If
End Sub
Thanks for your reply. However, this did not do what I wanted.
 
Upvote 0

Forum statistics

Threads
1,225,747
Messages
6,186,792
Members
453,371
Latest member
HMX180

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