Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I got this Macro off of DmcRitchie's web site. It removes all formulas from a workbook (pasting as values) How can I ADD a CONFIRMATION STEP that will bring up dialog box saying (something like): "Are you sure you want to strip all formulas form this workbook?" Yes and No Buttons Let me know if easy to do. Tx, S Sub Remove_All_Formulas_In_All_Sheets 'No_formula_Macro() 'Goodnight 2000-10-27 programming -- Striping a workbook of formulas Dim SH As Worksheet For Each SH In Worksheets SH.Activate Application.ScreenUpdating = False Cells.Select Selection.Copy Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, _ SkipBlanks:= False, Transpose:=False Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to enable macro and updated link without confirmation? | Excel Discussion (Misc queries) | |||
Creating a Drop Down List with Step by Step Instructions for 2007 | Excel Worksheet Functions | |||
Macro Step by Step | Excel Discussion (Misc queries) | |||
I need step by step instructions to create a macro for 10 imbedde. | Excel Worksheet Functions | |||
VBA macro step-by-step | Excel Programming |