Copy And paste visible data of table after filter to another table of anothet sheet

OneAbhishek

New Member
Joined
Feb 23, 2022
Messages
5
Office Version
  1. 2016
Platform
  1. Windows
Hi everyone
I am trying to copy paste visible data of a table after filter to another table of another sheet.
I want to paste data below the earlier data of that sheet. My table Ranges (A9: I80)
apply filer in C9 shows other than blank cells then select and copy the visible data of table and paste below existing data in another table in another sheet
can some please help

I tried the following macro but failed
Sub Save1()

' SAVE1 Macro
'

'
ActiveSheet.Range("$A$9:$H$80").AutoFilter Field:=3, Criterial:="<>"
Range("B10:I80").SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheets("DATABASE2").Select
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, 2).End(xlUp)
ActiveCell.End(xlDown).Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("DAILY").Select
Application.CutCopyMode = False
ActiveCell.FormulaR1C1 = ""
Range("I17").Select
End Sub
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,214,646
Messages
6,120,716
Members
448,985
Latest member
chocbudda

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