paste values not formula

  1. C

    copy value from cell paste special only values to last row of column

    Hi Guys, I currently have this macro Sub COPYTODASH() Application.ScreenUpdating = False Worksheets("DASHBOARD").Range("R26:R26").Copy Worksheets("PROG").Range("C" & Rows.Count).End(xlUp)(2) Application.ScreenUpdating = True End Sub It works as expected, the only problem I'm having is that...
  2. S

    VBA to copy from one sheet and paste values to another

    Hi, I have some code which works fine apart from the bit where it copies formulas rather than values across to the new sheet. What am I missing here? Sub Quotetracker()Application.ScreenUpdating = False Sheets("Customer Quote").Range("B11").Copy _ Destination:=Sheets("Quote...
  3. S

    Paste Values rather than formula VBA

    Hi, I have some code where its picking data from one sheet and dropping it into another. However i just have a small issue with one piece as its pasting the actual formula rather than just the values. can someone advise with what I am missing or what I need here to do it? Sub Copyover...
  4. M

    Need macro solution to copy/paste formula from first filtered cell

    I need a macro solution to perform the following tasks... 1. Filter column A for all blanks 2. Select first resulting cell and enter a formula in it 3. Copy that formula into columns B thru O then down to last row in filtered list 4. Copy all new formula cells and paste value over them
  5. RCONDADO

    Paste Only Values on the Visible Cells in Two or More Collumns

    Hi friends! To paste only values on the visible cells, i use the following macro: <tbody> Sub Copy_Filtered_Cells() Dim from As Variant Dim too As Variant Dim thing As Variant Dim cell As Range 'Selection.SpecialCells(xlCellTypeVisible).Select Set from =...
  6. T

    Edit code to cell values and not the contents (which are formulas).

    Sub Test()Sheets("A").Range("D93:M93").Copy Sheets("B").Range("D" & Rows.Count).End(xlUp).Offset(1, 0)End SubThe above worked great, but it pasted the formulas within the cell instead of the values.</PRE>
  7. P

    Easy - paste values code

    Hi, I am trying to copy only the values (NOT the formulas) from one location to another. My current code is: With Sheets("Main Page") .Range("G12", .Range("G" & Rows.Count).End(xlUp)).Copy _ Sheets("Comparison").Range("B" & Rows.Count).End(xlUp)(2) End With Obviously, this...

We've detected that you are using an adblocker.

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 Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top