The macro is fairly straight forward to understand...even without much VBA knowledge. It reads like english

(At least I think).
I would say...give it a shot. Place the macro in your actual file and when you carefully read the macro, simply change the cell references in the macro to point to the correct cells...for example:
This:
Worksheets("
Bill").Range("
B3").Copy
Could become this:
Worksheets("
NewBill").Range("
E3").Copy
You only really need to change the "fixed" cell references or sheet names as in the above example...the rest of the code can be left as is!
If you have tried and things don't work out well, you can create another post here...and I'm sure I or someone else will be happy to help.

Bookmarks