Run Macro Automatically when data validation changes

rgkgk

New Member
Joined
Apr 21, 2013
Messages
4
Hi All,

Need Help:

Automatically run macro when data validation value changes:

Ex : Range E4 has a data validation, list contains 5 values (Red, Blue, Green, Amber, White)
if E4 value = Red then run macro

Thanks,
GK
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

ZAX

Well-known Member
Joined
Jul 5, 2012
Messages
715
Type This Code In The Sheets' Code Page And Replace The 7th Line With The Macro Name:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$E$4" Then
Exit Sub
Else
If Target.Value <> "Red" Then
Exit Sub
Else
'Type The Macro Name Here
End If
End If
End Sub
ZAX
 
Upvote 0

ZAX

Well-known Member
Joined
Jul 5, 2012
Messages
715
It's Working Perfectly,PLZ Follow The Steps:
1.Open Visual Basic Window.
2.Look To The Left You'll Find The Following:
a)Module1
b)This Workbook
c)Sheet1("The First Sheets' Name Here") EX: Sheet1(Data)
Double Click The Sheet That Has The Name Of The Sheet Which Has The Validated Cell.
3.Paste My Code.
4.Change The 7th Line Of Code With The Macro Name EX: "Macro1".
ZAX
 
Upvote 0

Forum statistics

Threads
1,195,664
Messages
6,011,017
Members
441,579
Latest member
satishrazdhan

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
Top