Hi Steve
Right click on the sheet name tab and select "View Code", paste this code in.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim WatchRange As Range
If Target.Cells.Count > 1 Then Exit Sub
If IsEmpty(Target) Then Exit Sub
On Error Resume Next
Set WatchRange = Range("A1:S10")
If Not Intersect(Target, WatchRange) Is Nothing Then
Range("T1") = Target
End If
Set WatchRange = Nothing
End Sub
Change Range("A1:S10") to suit. Push Alt+Q.
Any good ?
Dave
OzGrid Business Applications
Dave I also wanted to have mutiple targets T4,T5,T6 ...
Thanks for the help
Do you mean if they select cell say A10 you want T10 to contain the contents of A1, if they select A2 you want T2 to contain the contents of A2 etc ?
What happens if they select R50 or K13 ect ?
Dave
OzGrid Business Applications
THATS CORRECT!
I WANT TO HAVE 28 ROWS A4 TO S4 AND T4 TO CONTAIN THE SELECTION( LETS SAY IF ANYTHING IN THE RANGE OF A4 TO S4 ONLY BE DISPLAYED IN T4 AND SO ON FOR EACH ROW) AND TO REPEAT FOR ROW 5-32 AND TO HAVE T5-T32 CONTAIN THE SELECTIONS FOR EACH ROW. I WANT ALL THE ROWS TO BE INDEPENDENT I WOULD ALSO LIKE TO FIND A WAY OF CIRCLEING THE CELL THAT WAS SELECTEDAND TO HAVE IT CHANGE IF YOU PICK A DIFFERENT CELL IN THE SAME ROW.
THANKS STEVE