View Single Post
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

For each worksheet in that workbook, you can copy|paste special|values and save
it as a new workbook.

Option Explicit
Sub testme()

Dim wks As Worksheet
Dim newWkbk As Workbook

ActiveWorkbook.Worksheets.Copy 'to a new workbook
Set newWkbk = ActiveWorkbook

For Each wks In newWkbk.Worksheets
With wks.UsedRange
.Copy
.PasteSpecial Paste:=xlPasteValues
End With
Next wks

Application.CutCopyMode = False

MsgBox "Please save this new workbook!"

End Sub


Charles wrote:

Is there a way to save just the data in a spreadshhet and not the formulaes
from a VBA Module.
--
CharlesM


--

Dave Peterson