Home |
Search |
Today's Posts |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Did you see this post?Simon Lloyd;184186 Wrote: Surely with this: Code: -------------------- With Workbooks("Book.xls").Worksheets("Sheet1") .Range(strPrevRange).Copy .Range(strPrevRange).PasteSpecial (xlPasteValues) End With -------------------- you meant: Code: -------------------- With Workbooks("Book.xls").Worksheets("Sheet1") .Range(strPrevRange) = .Range(strPrevRange).Value End With -------------------- to remove all the formulae? -- Simon Lloyd Regards, Simon Lloyd 'The Code Cage' (http://www.thecodecage.com) ------------------------------------------------------------------------ Simon Lloyd's Profile: http://www.thecodecage.com/forumz/member.php?userid=1 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=50861 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can't Copy and Paste or Paste Special between Excel Workbooks | Excel Discussion (Misc queries) | |||
copy & paste in excel | Excel Discussion (Misc queries) | |||
Copy and Paste in Excel | Excel Discussion (Misc queries) | |||
Excel cut/Paste Problem: Year changes after data is copy and paste | Excel Discussion (Misc queries) | |||
copy multiple worksheets of a workbook, and paste onto a Word document ( either create new doc file or paste onto an existing file.) I need this done by VBA, Excel Macro | Excel Programming |