Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I know we can copy and paste special so that cells referencing other
workbooks are changed to values-only but wonder if there's a way to simply save a multi-sheet, complex workbook that references many other workbooks as values. This would be ideal for sending out up-to-date reports so that my recipients aren't bothered with the "workbook contains values linked to another workbook" pop-up. Any suggestions? |
#2
![]() |
|||
|
|||
![]()
You could run a little macro to convert to values.
But don't forget to save this as a new name--it might bring tears if you save over your workbook that contains the formulas! Option Explicit Sub testme() Dim wks As Worksheet For Each wks In ActiveWorkbook.Worksheets With wks.UsedRange .Copy .PasteSpecial Paste:=xlPasteValues End With Next wks 'save it as a new name!!! Application.Dialogs(xlDialogSaveAs).Show End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm williejoeshaver wrote: I know we can copy and paste special so that cells referencing other workbooks are changed to values-only but wonder if there's a way to simply save a multi-sheet, complex workbook that references many other workbooks as values. This would be ideal for sending out up-to-date reports so that my recipients aren't bothered with the "workbook contains values linked to another workbook" pop-up. Any suggestions? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Why does Excel 2003 freeze when saving a workbook that has importe | Excel Worksheet Functions | |||
How do you disable save file dialog? | Setting up and Configuration of Excel | |||
Should be able to name Excel sheets based on cells in workbook | Excel Discussion (Misc queries) | |||
how to update a shared workbook using the same cells at the same t | Excel Discussion (Misc queries) |