Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello All,
I've come across a couple of methods of making all sheets in a workbook values only. The routines I have have a tentency towards unexpected errors and they take a while to run e.g below. Has anyone got an alternative method I could try. Any help appreciated Jason. '======================== Private Function MakeSheetValuesOnly(mySheetName As String) With ActiveWorkbook.Sheets(mySheetName) With .Cells .Copy .PasteSpecial xlPasteValues End With .Select .Range("A1").Select End With ActiveWindow.SmallScroll Down:=-200 Application.CutCopyMode = False End Function 'MakeSheetValuesOnly '========================================= |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Make the same titles repeated in multiple sheets of a workbook | Excel Programming | |||
copy/paste values for all sheets in workbook | Excel Programming | |||
Comparing Cell values in two sheets within the same workbook | Excel Programming | |||
How do I make changes in all sheets within a workbook? | Excel Worksheet Functions | |||
Code to make sheets in a workbook visible | Excel Programming |