B
bullandbear1987
I am having a few problems.
First off, I do not want data to appear when I make a selection change,
but rather when I pick an item to appear automatically.
Whenever I try and use CHANGE rather than SELECTION CHANGE, this
argument doesn't work. HELP!
Private Sub Worksheet_Change(ByVal Target As Range)
If Worksheets("Sheet3").Range("B3").Value = 2 Then
Worksheets("Sheet1").Range("F3") =
Worksheets("Sheet3").Range("F4").Value
End Sub
Secondly, I would like the data from this argument to appear in a text
box. What is the code I need in order to write up this program?
First off, I do not want data to appear when I make a selection change,
but rather when I pick an item to appear automatically.
Whenever I try and use CHANGE rather than SELECTION CHANGE, this
argument doesn't work. HELP!
Private Sub Worksheet_Change(ByVal Target As Range)
If Worksheets("Sheet3").Range("B3").Value = 2 Then
Worksheets("Sheet1").Range("F3") =
Worksheets("Sheet3").Range("F4").Value
End Sub
Secondly, I would like the data from this argument to appear in a text
box. What is the code I need in order to write up this program?