View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Stefi Stefi is offline
external usenet poster
 
Posts: 2,646
Default Filter, Cut and Paste Problem

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:

Try this two step selection method:

1st selection: EditGoToAdvancedCurrent area
2nd selection: EditGoToAdvancedVisible cells only

Now copy and paste!

Regards,
Stefi

€˛ManhattanRebel€¯ ezt Ć*rta:

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?