Hi All,
I think this is a quick one, but I cant seem to get it to work and wonder if you can cast your expert eyes over it for me please
I need:
When cell G5:I5 is changed, I need it to use the value and put it in 3 different sheets at various cells.
I have this at present, the green bit is what I cant get working:
I think I may be using the target.value wrong (if it even exists) do I need to copy and paste the value or something similar? I get no errors, just doesnt transpose the target cell value to anyway.
Any help would be brill, as I'm feeling very stupid at the moment.
Thanks in advance, Upex
I think this is a quick one, but I cant seem to get it to work and wonder if you can cast your expert eyes over it for me please
I need:
When cell G5:I5 is changed, I need it to use the value and put it in 3 different sheets at various cells.
I have this at present, the green bit is what I cant get working:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 8 Then Exit Sub
[COLOR=seagreen]If Target.Address = "G5:I5" Then
Sheets("Review of 1st period").Range("h3").Value = Target.Value
Sheets("Member Progression 1st period").Range("h3").Value = Target.Value [/COLOR]
[COLOR=seagreen] Sheets("Observations 1st period").Range("i3").Value = Target.Value
End If
[/COLOR]
If Not Application.Intersect(Target, Rows("18:18")) Is Nothing Then
If Len(Target.Value) = 0 Then
Application.EnableEvents = False
Target.Value = "Select Planned Course"
Application.EnableEvents = True
End If
End If
If Not Application.Intersect(Target, Range("b13")) Is Nothing Then
If Len(Target.Value) = 0 Then
Application.EnableEvents = False
Target.Value = "300"
Application.EnableEvents = True
End If
End If
End Sub
I think I may be using the target.value wrong (if it even exists) do I need to copy and paste the value or something similar? I get no errors, just doesnt transpose the target cell value to anyway.
Any help would be brill, as I'm feeling very stupid at the moment.
Thanks in advance, Upex