+ Reply to Thread
Results 1 to 13 of 13

Clear All VBA Codes and formulas

Hybrid View

  1. #1
    Forum Expert
    Join Date
    04-23-2009
    Location
    Matrouh, Egypt
    MS-Off Ver
    Excel 2013
    Posts
    6,892

    Re: Clear All VBA Codes and formulas

    Quote Originally Posted by Loganeb View Post
    These were the instructions at the top:
    Thank you for guiding me I didn't notice that at all
    Thank you very much for this great forum.

    Just the second point to turn all the formulas to just values

  2. #2
    Forum Contributor
    Join Date
    10-16-2014
    Location
    Center Line, Michigan, United States
    MS-Off Ver
    MS Office 2013
    Posts
    139

    Re: Clear All VBA Codes and formulas

    Hey YasserKhalil,

    Here you go. Most efficient code I ever found to do this:

    Sub Formula_Zapper() 
        Worksheets.Select 
        Cells.Select 
        Selection.Copy 
        Selection.PasteSpecial Paste:=xlPasteValues 
        ActiveSheet.Select 
        Application.CutCopyMode = False 
    End Sub
    Please click the star (add rep) if I helped!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Transpose Excel formulas to VBA codes
    By kraut in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-29-2013, 11:04 AM
  2. Clear static formulas, but leave linked formulas
    By pacerx in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-26-2013, 05:08 AM
  3. Using Formulas to Generate SKU codes
    By X-tremejoe in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-09-2013, 03:55 PM
  4. Using Formulas to Generate SKU codes
    By X-tremejoe in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-09-2013, 03:33 PM
  5. Creating VBA codes to do what formulas do
    By jacglc2010 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-03-2010, 01:52 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1