Worksheet_Change Event problem

r1998

Board Regular
Joined
Sep 9, 2018
Messages
106
Dear friends and respected seniors,
in excel in sheet1, whenever the value in cell F2 changes, it will store the new value in F14 if its blank, then another value in F15 if its blank and then another value in F16 if its blank...
I am using this vba code
Code:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
 If Not Intersect(Target, Range("f2")) Is Nothing Then
   If IsEmpty(Range("f14")) Then
   Range("f14") = Target.Value
   ElseIf IsEmpty(Range("f15")) Then
   Range("f15") = Target.Value
   ElseIf IsEmpty(Range("f16")) Then
   Range("f16") = Target.Value
   End If
  End If
End Sub
This works perfectly fine if i am manually changing the value with keyboard in cell F2.....
But when i use the RTD function in cell F2, the value in F2 cell changes after every 2-3 seconds but values in f14,f15 and f16 dont show up :(
i have no clue what i am doing wrong :(
Can anyone please kindly guide me n point out my mistake
Awaiting your replies.
Thank you.
 
Last edited:

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Hello,

what i am doing wrong

... Nothing ... .wink:

The Worksheet_Change will not be fired by a Live feed ...

Do not know the structure of your worksheet ... but you could be testing the Woksheet_Calculate ....

Hopefully this will help
 
Upvote 0
Firstly when you change a cell with in a worksheetchange event subroutine, you are changing the worksheet which will trigger a worksheet changeevent. i.e you reenter the same sub routine before you have finished it the first time, this is a recipe for probelms usually an "out of memory" error. You get away with it this time because you are checking if the change is cell f2, which fails on the 2nd entry. To avoid this you should disable events before you write to a cell in the sub, but you mnust restore them afterwards:
like this:
Code:
  Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
 If Not Intersect(Target, Range("f2")) Is Nothing Then
[COLOR=#ff0000]   Application.EnableEvents = False[/COLOR]


   If IsEmpty(Range("f14")) Then
   Range("f14") = Target.Value
   ElseIf IsEmpty(Range("f15")) Then
   Range("f15") = Target.Value
   ElseIf IsEmpty(Range("f16")) Then
   Range("f16") = Target.Value
   End If
[COLOR=#ff0000]   Application.EnableEvents = True[/COLOR]


  End If
End Sub

that wasn't the question you asked.
What might be causing your probelm is the RTD update is not triggering the worksheet change event, one way you might be able to get around this is to put a calculation into a spare cell which uses the cell F2 . e.g =len(F2)
This cell will cause a worksheet calculate event which you can use to trigger your code. Note the worksheet calculate envent does not have a "Target Range" so you will need to test to see if F2 is different from the previous value,
 
Upvote 0
Thank you James006 (y)and thank you offthelip (y)
i will test with worksheet_calculate and by disabling events too
i will be able to test tomorrow n will reply back
Thank you (y)
 
Upvote 0
Thank you James006 (y)and thank you offthelip (y)
final working code :biggrin:
Code:
Option Explicit
  
  Private Sub Worksheet_Calculate()
    Dim target As Range
    Set target = Range("f2")

    If Not Intersect(target, Range("f2")) Is Nothing Then
    If IsEmpty(Range("f14")) Then
   Range("f14") = target.Value
   ElseIf IsEmpty(Range("f15")) Then
   Range("f15") = target.Value
   ElseIf IsEmpty(Range("f16")) Then
   Range("f16") = target.Value
   End If
   End If
End Sub
:biggrin:
 
Last edited:
Upvote 0
It is best practice to inhibit the events when you are writing into the worksheet Calculate event as well. because you can trigger a recalculate with every write to the worksheet depending what is on it. You might need to do a specific recalculate at the end of all the writing, but the point I am making is you should keep control of it. Otherwise you might add a fomula to you worksheet and then find your vba code crashes
Also your check on the intersect will always pass because you set target to F2 , so this is totally unnecessary
so I recommend:
Code:
  Private Sub Worksheet_Calculate()

   Application.EnableEvents = False
    If IsEmpty(Range("f14")) Then
   Range("f14") = target.Value
   ElseIf IsEmpty(Range("f15")) Then
   Range("f15") = target.Value
   ElseIf IsEmpty(Range("f16")) Then
   Range("f16") = target.Value
   End If
   Application.EnableEvents = True
   
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,220
Messages
6,123,693
Members
449,117
Latest member
Aaagu

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