Expert eye needed
Hi
Looks pretty simple to me. This line, Option Explicit is all about
declaring all your variables. A good way to start anything in VBA.
Your lngLastRow is not declared as a variable. A simple misspelling
where you have Dim ingLastRow As Long
Replace with
Dim lngLastRow As Long
Take care
Marcus
|