About 11,300 results
Open links in new tab
  1. Remove formula retain value (VBA) | MrExcel Message Board

    Jan 17, 2003 · Hello all, 35 cells in sheet 1 have formulas. I need to transfer these cells to sheet2 as value only. The "paste/special value is not an option. I could use a very long macro to do this …

  2. Remove formula - keep value? | MrExcel Message Board

    Apr 16, 2002 · I have a calculation in the cell I have tools/options/calculate on manual formula: =INDEX(A1:A20,RANDBETWEEN(1,COUNTA(A1:A20))) ..thanks Aladin. I obtain a value, but …

  3. Remove formula, keep value | MrExcel Message Board

    Jan 13, 2005 · I have a cell that contains a hidden and locked VLOOKUP formula that gets information from a separate worksheet based on what the user enters. Is there a way that after …

  4. Macro to keep remove formulas and keep values - MrExcel

    Dec 30, 2008 · I am trying to remove formulas and keep values for a particular column but it's not working. Generally I would do something like: Range("A1:A10").Value = Range("A1:A10").Value …

  5. VBA to remove formulas, but keep values AND FORMAT - MrExcel

    Feb 21, 2017 · So in Excel, there really is no difference between numbers and dates. The only difference is how the user decides to format those cells (whether as numbers or dates). So, in …

  6. VBA to remove formula of a cell but keep value - MrExcel

    Mar 21, 2012 · Hi! I need to do something tricky and i'm not sure how to do it. I need to create a macro that will erase the formula in of a cell, but keep the value in it. The problem is that the value …

  7. Remove Cell Formula But Keep Value? | MrExcel Message Board

    Dec 29, 2009 · What I REALLY want to do is extract the text value from the cell, keep it, get rid of the reference to the vlookup function and then "place" the text back into the cell. Anotherwards I want …

  8. VBA to Clear Formulas out of a Worksheet - MrExcel

    Apr 20, 2009 · Hello All. I have the following Code: Sheets("NonFormat").Select With Selection Cells.Select Selection.ClearFormats Selection.Hyperlinks.Delete Application.CutCopyMode = …

  9. Remove links to Cell, Keep Values | MrExcel Message Board

    Feb 17, 2002 · We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com. Allow …

  10. Remove all formulas but keep Values throughout workbook

    Jul 10, 2014 · I need to remove all formulas but keep values on all sheets. I've used the below macro based on this thread, but this returns #n/a for all XLOOKUP values Sub Convert2Values() Dim …