Filter, Cut and Paste Problem

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?
 
S

Stefi

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:
 
M

ManhattanRebel

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.
 
S

Stefi

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:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top