I have this code..
Can I make this run when a cell or some cells in a range of cells (sheet 3 E3:E24) gets filled by a formula? This works when I use a command button but I would like it to just run when the other cells get filled. I seen a lot of ideas but none work, can an IF formula make a macro run? Thanks
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Me.Range("E3")) Is Nothing Then Macro
Sheets("Sheet3").Select
Range("E3:E24").Select
Selection.Copy
Sheets("Sheet2").Select
Range("E3:E24").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
Can I make this run when a cell or some cells in a range of cells (sheet 3 E3:E24) gets filled by a formula? This works when I use a command button but I would like it to just run when the other cells get filled. I seen a lot of ideas but none work, can an IF formula make a macro run? Thanks