Cell QA for Bob Phillips

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
-----------------------------------------------------------------------------
 
D

Don Guillett

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")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top