run-time error 1004 - VBA Gurus Please Help
the gurus just helped me with "select".
you can measurably shorten your code by using
Sheets("Production").Range("D4").ClearContents
(one line instead of three).
OR
With Sheets("Production")
.Range("D4").ClearContents
.Range("F4").ClearContents
'continue
End With
With xxxxxNextSheet
End With
as for why your button isn't working, where is the button located?
toolbar? activex control? userform?
susan
|