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
 
Are you talking about this one ?
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
Then change to
Code:
Sub test()
Dim myAreas As Areas, myArea As Range, r 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
        For Each r In myArea
            r.Value = r.Text
        Next
    Next
End With
End Sub
 
Upvote 0

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
can this be re-written to skip blanks?

Also, is this to advanced?? how build in an undo?
 
Upvote 0

Forum statistics

Threads
1,215,945
Messages
6,127,851
Members
449,411
Latest member
adunn_23

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