I have the following code:
This basically copies a value into the Range BA1:BA3, that then activates another Macro
At the moment, a value only gets copied into cell BA1 which activates macro:Part1V1
How do I make it so that when a value gets copied into cell BA2, it activates another macro?
Any help would be appreciated
Thank you
Code:
Private Sub Worksheet_Change(ByVal Target As Range)If Not Application.Intersect(Range("BA1:BA3"), Range(Target.Address)) Is Nothing Then
Call Part1V1
End If
End Sub
Sub QPart1V1()
Dim CellRangeP1V1 As String
CellRangeP1V1 = Range("AX6").Value
Range("AU4").Select
Selection.Copy
Range("BA" & CellRangeP1V1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
This basically copies a value into the Range BA1:BA3, that then activates another Macro
At the moment, a value only gets copied into cell BA1 which activates macro:Part1V1
How do I make it so that when a value gets copied into cell BA2, it activates another macro?
Any help would be appreciated
Thank you