simoncpage
Programmer
I am using the following sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer, j As Integer, k As Integer, l As Integer, m As Integer
If Target.Cells = Range("reviews" Then
-------------------------
do stuff
-------------------------
Else
End If
End Sub
When I select a select and drag it contents over a number of cells below it - I get an error mismatch with the target cell line - anything I can do to get round this???
Thanks
Simon
Private Sub Worksheet_Change(ByVal Target As Range)
Dim i As Integer, j As Integer, k As Integer, l As Integer, m As Integer
If Target.Cells = Range("reviews" Then
-------------------------
do stuff
-------------------------
Else
End If
End Sub
When I select a select and drag it contents over a number of cells below it - I get an error mismatch with the target cell line - anything I can do to get round this???
Thanks
Simon