Copy a spreedsheet
I odn't know if PasteSpecial into word and select Text only will work. If
not try this code
'performing a copy without after/before will create new workbook
set newsht = activesheet.copy
with newsht
'add you code here to delete the gridlines on new worksheet
end with
'kill new workbook
newsht.parent.close savechanges:=false
"Sofia Grave" wrote:
Hej to all.
I am using Excel 2007 SP2.
I have a command button in my spreedsheet to copy a select area.
But when I copy to a word document it copies also the gridlines. To avoid
this I have to remove always the gridlines in excel before pressing the
button.
the button is only
selection.copy.
How can I copy without THE GRID but keeping the grid in the excel
spreedsheet.
In word I make a paste special - windows enchanted file
Thanks for the time.
Sofia grave
|