wrightyrx7
Well-known Member
- Joined
- Sep 15, 2011
- Messages
- 994
Hi all,
I have a workbook that I have used for a while where I put a number in 'col A' and it does a vlookup for other details.
I had a problem where if I DELETED more than one number from 'col A', I got an error from the macro. I got around this with:-
But now I want to ADD more than one number at a time and the vlookup to run. But im guessing the about code will stop this happening.
Is there any suggestions to how i will get around this?
Thanks in advance
Chris
I have a workbook that I have used for a while where I put a number in 'col A' and it does a vlookup for other details.
I had a problem where if I DELETED more than one number from 'col A', I got an error from the macro. I got around this with:-
Code:
If Target.Cells.Count > 1 Then
Exit Sub
End If
But now I want to ADD more than one number at a time and the vlookup to run. But im guessing the about code will stop this happening.
Is there any suggestions to how i will get around this?
Thanks in advance
Chris