Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default stop from running everytime a cell is changed


i am running the following macro,

Private Sub Worksheet_Change(ByVal Target As Range)

If Range("FE11") = 1 Then
MsgBox "VEHICLE MAY BE DUE FOR A SERVICE !!", vbBEEP +
vbOKOnly
End If

End Sub

i am a newbie to programming and can't figure out how to stop it from
running everytime any cell value is changed in the worksheet other than
"FE11" !

any help would be aprreciated

thanks in advance

bassfisher


--
bassfisher
------------------------------------------------------------------------
bassfisher's Profile: http://www.excelforum.com/member.php...o&userid=27585
View this thread: http://www.excelforum.com/showthread...hreadid=472323

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,080
Default stop from running everytime a cell is changed

Add a line at the beginning:

If Intersect(Range("FE11"), Target) Is Nothing Then Exit Sub

--

Vasant



"bassfisher" wrote
in message ...

i am running the following macro,

Private Sub Worksheet_Change(ByVal Target As Range)

If Range("FE11") = 1 Then
MsgBox "VEHICLE MAY BE DUE FOR A SERVICE !!", vbBEEP +
vbOKOnly
End If

End Sub

i am a newbie to programming and can't figure out how to stop it from
running everytime any cell value is changed in the worksheet other than
"FE11" !

any help would be aprreciated

thanks in advance

bassfisher


--
bassfisher
------------------------------------------------------------------------
bassfisher's Profile:
http://www.excelforum.com/member.php...o&userid=27585
View this thread: http://www.excelforum.com/showthread...hreadid=472323



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default stop from running everytime a cell is changed

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Address(0,0) = "FE11" then
if Range("FE11") = 1 Then
MsgBox "VEHICLE MAY BE DUE FOR A SERVICE !!", vbBEEP +
vbOKOnly
End If
End if
End Sub

--
Regards,
Tom Ogilvy

"bassfisher" wrote
in message ...

i am running the following macro,

Private Sub Worksheet_Change(ByVal Target As Range)

If Range("FE11") = 1 Then
MsgBox "VEHICLE MAY BE DUE FOR A SERVICE !!", vbBEEP +
vbOKOnly
End If

End Sub

i am a newbie to programming and can't figure out how to stop it from
running everytime any cell value is changed in the worksheet other than
"FE11" !

any help would be aprreciated

thanks in advance

bassfisher


--
bassfisher
------------------------------------------------------------------------
bassfisher's Profile:

http://www.excelforum.com/member.php...o&userid=27585
View this thread: http://www.excelforum.com/showthread...hreadid=472323



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default stop from running everytime a cell is changed


thanks for the advice, but it didn't solve the problem, now it appears
as tho the macro stopped running.


--
bassfisher
------------------------------------------------------------------------
bassfisher's Profile: http://www.excelforum.com/member.php...o&userid=27585
View this thread: http://www.excelforum.com/showthread...hreadid=472323

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default stop from running everytime a cell is changed

Did you disable macros when you opened the workbook?

Did you disable events while you were testing?

bassfisher wrote:

thanks for the advice, but it didn't solve the problem, now it appears
as tho the macro stopped running.

--
bassfisher
------------------------------------------------------------------------
bassfisher's Profile: http://www.excelforum.com/member.php...o&userid=27585
View this thread: http://www.excelforum.com/showthread...hreadid=472323


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default stop from running everytime a cell is changed


hello dave, no macros are enabled and i am sure the events are on,
think, not sure! so much to learn! so little time!

bassfishe

--
bassfishe
-----------------------------------------------------------------------
bassfisher's Profile: http://www.excelforum.com/member.php...fo&userid=2758
View this thread: http://www.excelforum.com/showthread.php?threadid=47232

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default stop from running everytime a cell is changed

Does this: "no macros are enabled" mean that macros are disabled?

If yes, set the security to medium and reopen your workbook and allow macros to
run.

(I didn't think that was the problem...)

And you're sure the code is under the correct worksheet???

bassfisher wrote:

hello dave, no macros are enabled and i am sure the events are on, i
think, not sure! so much to learn! so little time!

bassfisher

--
bassfisher
------------------------------------------------------------------------
bassfisher's Profile: http://www.excelforum.com/member.php...o&userid=27585
View this thread: http://www.excelforum.com/showthread...hreadid=472323


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
I AM TRYING TO STOP BEING PROMPTED TO SAVE EVERYTIME I USE EXCEL salma Excel Worksheet Functions 1 September 3rd 09 08:39 PM
How to stop running macros everytime I run excel? SusieOrtiz Excel Discussion (Misc queries) 1 August 18th 09 05:20 AM
Password Prompt Everytime a Link is Changed [email protected] Excel Discussion (Misc queries) 1 June 7th 07 07:55 PM
How do I stop dates from being entered everytime I enter a number Kicking and Screaming Excel Discussion (Misc queries) 2 October 23rd 05 02:34 PM
Automaticlly Running Macro on Changed Cell Chris Excel Programming 1 December 2nd 03 03:54 PM


All times are GMT +1. The time now is 02:59 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"