L
Legacy 185509
Guest
This is my current code
I don't know where to put this code but i have it undr Sheet1 tab (View Code)
here is what I am have there
if user click's on Cell C11 on sheet1, in Sheet2 Cell A1 it will type some formula or take the range of S2
I don't know where to put this code but i have it undr Sheet1 tab (View Code)
here is what I am have there
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Select Case Target.Address
Case "$A$11"
Sheets("Sheet2").Select
Range("A2").Select
ActiveCell.FormulaR1C1 = Range("S12")
Case "A12"
Sheets("Sheet2").Select
Range("A2").Select
ActiveCell.FormulaR1C1 = Range("S13")
Case "$B$21"
Sheets("Sheet3").Select
Range("A2").Select
ActiveCell.FormulaR1C1 = Range("S2")
End Select
End Sub