Copy from Excel tables

01's

Board Regular
Joined
Jun 1, 2011
Messages
85
Hi Everyone,

I am in need of copying filtered content from excel table and pasting it into another sheet below already existing data.
I am using below code but it doesn't work fine every time. The sheet where it pastes it shifts 1 row leaving a blank row after every code run.



Private Sub CopyScenario(ByVal TableName As String)






Dim TargetTable As ListObject
Dim NumberOfAreas As Long


Set TargetTable = ActiveSheet.ListObjects(TableName)


' Check
With TargetTable.ListColumns(1).Range
NumberOfAreas = .SpecialCells(xlCellTypeVisible).Areas(1).Cells.Count
Debug.Print NumberOfAreas
End With


If NumberOfAreas = 0 Then
''''
Else




Set ws = ThisWorkbook.Sheets("Saved Scenarios")


lrow = ws.UsedRange.SpecialCells(xlCellTypeLastCell).Row








'Pasting rows
Application.CutCopyMode = False


TargetTable.Range.Offset(1, 0).SpecialCells(xlCellTypeVisible).Copy _
Destination:=Sheets("saved Scenarios").Range("A" & (lrow + 1))
Debug.Print lrow

End If



End Sub
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off

Forum statistics

Threads
1,214,611
Messages
6,120,510
Members
448,967
Latest member
screechyboy79

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