Copy and Paste Data in New Record

ajipenk

New Member
Joined
Apr 29, 2021
Messages
3
Office Version
  1. 365
Platform
  1. Windows
hi there,

i am new in vba and i am very excited about vba.. but i need to create a little magic just by clicking a single command button.

i have data in table format, i want to copy data (from colums material to harga satuan) by only selecting any rows on its columns (figure BEFORE)
Screenshot (10).png


and as an output, i want the data added in new rows on the table (figure AFTER)
Screenshot (11).png


thankyou
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Like this?

VBA Code:
Sub DoTheThing()

Dim sht As Worksheet
Dim LastRow As Long

Set sht = ActiveSheet

For Each cell In Selection
    LastRow = sht.Cells(sht.Rows.Count, "B").End(xlUp).Row
    Rows(cell.Row).Copy Rows(LastRow + 1)
Next cell

End Sub
 
Upvote 0
thats very nice, but the table didn't expand automatically when new data added
 
Upvote 0
Sorry, I didn't try as a table. Just change the table name below as needed.

VBA Code:
Sub DoTheThing()

Dim sht As Worksheet
Dim LastRow As Long

Set sht = ActiveSheet

For Each cell In Selection
    LastRow = sht.Cells(sht.Rows.Count, "B").End(xlUp).Row
    Rows(cell.Row).Copy Rows(LastRow + 1)
Next cell

ActiveSheet.ListObjects("Table1").Resize Range("$B$9:$E$" & LastRow + 1)

End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,421
Messages
6,119,392
Members
448,891
Latest member
tpierce

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