Cell QA for Bob Phillips

  • Thread starter Thread starter RoadKing
  • Start date Start date
R

RoadKing

Good afternoon Bob:



In reference to your QA: (Which sheet was the active sheet when you
right-clicked on the tab? It should have been Data Sheet).



Yes, I did as you said, but I am not sure I placed the text string in the
right place. I pasted it in View Code on the blank area to the right of
"Project / Properties" section but for some reason it is not moving the text
from "Data Sheet" to the "Activity Sheet".


Is it possible to communicate with you directly so I can get this worked
out?



Thanks
John
-------------------------------------------------------------------------
YOUR CODE MODIFIED:
Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "B1:B10" '<== change to suit
On Error GoTo ws_exit
Application.EnableEvents = False
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
Worksheets("Activity Report").Range("C1").Value = .Value
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub
-----------------------------------------------------------------------------
 
In case Bob is not available. You should have done exactly like this
right click the sheet tab of the sheet where you want the code
view code
copy/paste the entire macro into the blank space provided.

Now if you change any cell in the b1:b10 range the value in that cell will
be sent to Worksheets("Activity Report").Range("C1")
 
Back
Top