ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do you run a Macro from an IF statement in Excel 2000? (https://www.excelbanter.com/excel-worksheet-functions/85662-how-do-you-run-macro-if-statement-excel-2000-a.html)

Rosey

How do you run a Macro from an IF statement in Excel 2000?
 
I have recorded a Macro that runs correctly, but need it to run from an If
function after user has entered a particular word. Any help were be
appreciated.
Thanks Rosey

Don Guillett

How do you run a Macro from an IF statement in Excel 2000?
 
right click sheet tabview codeinsert this

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address < "$B$2" Then Exit Sub
If UCase(Target) = "JOE" Then Call bill
End Sub

Sub bill()
MsgBox "Hi there Joe"
End Sub

--
Don Guillett
SalesAid Software

"Rosey" wrote in message
...
I have recorded a Macro that runs correctly, but need it to run from an If
function after user has entered a particular word. Any help were be
appreciated.
Thanks Rosey





All times are GMT +1. The time now is 11:58 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com