Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I want to copy worksheet in different workbook but i don't want to copy links with this sheet (values only) , how i can make that? Thanks Mike |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
dim bk as workbook, bk1 as workbook
set bk = workbooks("destbook.xls") set bk1 = workbooks("srcbook.xls") bk1.worksheets(1).copy after:=bk.worksheets(bk.worksheets.count) activesheet.cells.copy activesheet.cells.pastespecial xlValues -- Regards, Tom Ogilvy "michael sofianos" wrote in message ... Hi, I want to copy worksheet in different workbook but i don't want to copy links with this sheet (values only) , how i can make that? Thanks Mike |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I copy cells from one worksheet to another based on values | Excel Worksheet Functions | |||
Copy/Paste how to avoid the copy of formula cells w/o calc values | Excel Discussion (Misc queries) | |||
Chart values do not update links to new worksheet | Charts and Charting in Excel | |||
If statement...copy values of cells on another worksheet. | Excel Discussion (Misc queries) | |||
excel 97: copy and paste values from one worksheet to another worksheet | Excel Programming |