Hi Herman
Glad to help, but I'm not too sure if you need help with all of what you are trying to do or just the "next 5 cells" bit. If it is only selecting the 5 cells from the selected cell you would probaly use:
Selection.Offset(0,-5).Copy
Workbooks.Add
Range("A1").paste
Dave
OzGrid Business Applications
Herman
Assuming you mean the 5 cells to the immediate right of the selected cell, I think Dave meant to type :-
Range(Selection.Offset(0, 1), Selection.Offset(0, 5)).Copy
Workbooks.Add
Range("A1").PasteSpecial xlPasteAll
Celia
Thax a lot , with this help i can make my sheet complete and yes i was only looking for the code for selecting the next 5 cells.
Thank you Celia and Dave
Thanks Celia, that was what I meant. Damn web pages, why can't they be like the VBE enviroment :-)
DaveOzGrid Business Applications