VBA code to paste values of specific cells onto next empty row on another sheet

Katyjean1

New Member
Joined
Apr 30, 2019
Messages
12
I can't figure out how to edit this code to paste values. I've search so many forums. Can anyone help?

Code:
Sub SUBMIT()
'
' SUBMIT Macro
'


'
    Dim ws1 As Worksheet, ws2 As Worksheet
    Dim DestRow As Long
    Set ws1 = Sheets("Entry Form")
    Set ws2 = Sheets("Reconcile")
    DestRow = ws2.Cells(Rows.Count, "A").End(xlUp).Row + 1
    ws1.Range("O8").Copy ws2.Range("A" & DestRow)
    ws1.Range("O6").Copy ws2.Range("B" & DestRow)
    ws1.Range("H6").Copy ws2.Range("C" & DestRow)
    ws1.Range("O10").Copy ws2.Range("D" & DestRow)
    
 End Sub
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Try
Code:
ws2.Range("A" & DestRow).value =ws1.Range("O8").Value
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,766
Messages
6,132,595
Members
449,737
Latest member
naes

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