How do I...

G

Guest

Guest
...tell Excel to run a macro based on information entered into a specific cell? Eg if user enters N run the macro, if they enter Y do nothing.

Thanks in advance!
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
I'm assuming that the value Y/N value will go in cell "A1".

Right click on the sheet tab and select "View Code".

Insert this code:

<pre>
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" And UCase(Target.Value) = "N" Then
MsgBox "Hi"
End If
End Sub</pre>

Change the 'Target.Address = "$A$1"' to whatever cell you need it to be.
Change the 'msgbox "hi"' line to the name of the macro you want to run.

HTH
 
Upvote 0
Thanks very much, this works fine! Now it does what I want is there a way to get the cell selector to move two cells to the right after the macro has run? For example, I put an N in A1, the macro runs, then I want the cell selector to move to cell C1.
 
Upvote 0

Forum statistics

Threads
1,214,573
Messages
6,120,310
Members
448,955
Latest member
Dreamz high

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