Excel Macro

hartless43

New Member
Joined
Dec 28, 2022
Messages
24
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

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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