Copy PAASTE VALUES

teodormircea

Active Member
Joined
Jan 8, 2008
Messages
331
Hello

How can i use this code to make it working also on a range filtered
Code:
Sub CopyPasteValues()
   Selection.Copy
   Selection.PasteSpecial Paste:=xlPasteValues
End Sub
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Not sure if i am just being dense, but I do not follow what you are asking for. Could you be more specific.
 
Upvote 0
Make a Paste Special like values on a range that has the auto filter ON, make it only for the selected visible cells
 
Upvote 0
try
Code:
Sub test()
Dim myAreas As Areas, myArea As Range
With Selection
    On Error Resume Next
    Set myAreas = .SpecialCells(12).Areas
    On Error GoTo 0
    If myAreas Is Nothing Then Exit Sub
    For Each myArea In myAreas
        myArea.Value = myArea.Value
    Next
End With
End Sub
 
Upvote 0
I found a little problem. that is not keeping the cell format after , for ex>
if i have =A1&"," &B2, is not keeping the format.
 
Upvote 0
I just verified once again , is not a problem of the macros , i made a mistake in my formulas, is keeping everything right,macros works fine.
Thanks anyway Jindon
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,435
Members
448,962
Latest member
Fenes

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