Re: help pleasr
Welcome to the Board!
You can start by recording a macro saving the workbook, then clearing out any cells you want emptied.
As for auto-incrementing the invoice #, you can use something like this:
Range("A1").Value = Range("A1").Value + 1
You can then add that to your other code.
Hope that helps,