Filter, Cut and Paste Problem

  • Thread starter Thread starter ManhattanRebel
  • Start date Start date
M

ManhattanRebel

I'm filtering then cutting and pasting, and when I paste to the new area,
data that I filtered out is being pasted. Is there a way to prevent this?
 
Try this two step selection method:

1st selection: Edit>GoTo>Advanced>Current area
2nd selection: Edit>GoTo>Advanced>Visible cells only

Now copy and paste!

Regards,
Stefi

„ManhattanRebel†ezt írta:
 
Stefi, are there any other options you can think of? I have to cut and paste
different data numerous times so I'm not sure your recommendation will work?
Thanks for the help.
 
Maybe you should create a macro for that purpose, e.g. something like this one:

Sub filtercopy()
Selection.CurrentRegion.Select
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheets.Add
ActiveSheet.Paste
End Sub

Regards,
Stefi

It copies the filtered data on the active sheet to a new sheet.





„Stefi†ezt írta:
 
Back
Top