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

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
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
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,214,588
Messages
6,120,409
Members
448,959
Latest member
camelliaCase

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