Copy Specific Columns Using VBA

gplans

New Member
Joined
May 30, 2019
Messages
41
I am trying to copy a row in a table that includes some hidden date. I want to be able to past the row below creating another row in the table. When the columns are hidden I want them to also be copied and pasted below.

How can I make sure that all my data in that row is copied including the hidden date and pasted below.

This is my code:

Code:
Private Sub CommandButton1_Click()

Dim myRow As Long, tblRow As ListRow
myRow = Cells(Rows.Count, "A").End(xlUp).Row
Set tblRow = Sheets("NSW Main Data").ListObjects("Table5").ListRows.Add(myRow - 2)
tblRow.Range.Offset(-1).Copy
tblRow.Range.PasteSpecial xlPasteAllMergingConditionalFormats
Application.CutCopyMode = False
    With Range("A" & myRow)
        .Value = "NSWM" & Right(Range("A" & myRow).Value, 6) + 1
        .HorizontalAlignment = xlCenter
    End With


End Sub
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
I am trying to copy a row in a table that includes some hidden date. I want to be able to past the row below creating another row in the table. When the columns are hidden I want them to also be copied and pasted below.

How can I make sure that all my data in that row is copied including the hidden date and pasted below.

This is my code:

Code:
Private Sub CommandButton1_Click()

Dim myRow As Long, tblRow As ListRow
myRow = Cells(Rows.Count, "A").End(xlUp).Row
Set tblRow = Sheets("NSW Main Data").ListObjects("Table5").ListRows.Add(myRow - 2)
tblRow.Range.Offset(-1).Copy
tblRow.Range.PasteSpecial xlPasteAllMergingConditionalFormats
Application.CutCopyMode = False
    With Range("A" & myRow)
        .Value = "NSWM" & Right(Range("A" & myRow).Value, 6) + 1
        .HorizontalAlignment = xlCenter
    End With


End Sub


Can Any help?
 
Upvote 0

Forum statistics

Threads
1,214,885
Messages
6,122,085
Members
449,064
Latest member
MattDRT

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