Cell QA Follow up

R

RoadKing

Hi Bob:

First thank you for the help. 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" but for some reason it is not
moving the text from "Data Sheet" to the "Activity Sheet".

Any help appreciated

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

-----------------------------------------------------------------------------









Private Sub Worksheet_Change(ByVal Target As Range)
Const WS_RANGE As String = "A!:A3" '<== 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("Sheet2").Range("A1").Value = .Value
End If


Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be 'placed
in the appropriate worksheet code module, not a standard 'code module.
 
B

Bob Phillips

Which sheet was the active sheet when you right-clicked on the tab? It
should have been Data Sheet.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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