userform to update multiple sheets

R

Ranae

I'm updating a sheet from a userform. I need to populate a second sheet
(2010) within the same workbook with the same data. What is the easiest way
to go about this?
I tried to put a code in to copy the entire row but kept coming up with an
error.

Thank you.


Set Wbk = Workbooks("Reworklog")
Sheets("2006-2010").Select
Dim LastRow As Object
Set LastRow = Range("a65536").End(xlUp)

LastRow.Offset(1, 0) = Me.TBRecDate
LastRow.Offset(1, 6) = Me.TbSN
LastRow.Offset(1, 11) = Me.TBreject
LastRow.Offset(1, 16) = Me.cboDisposition


'Clear fields for next entry
Me.TbSN = ""
Me.TBreject= ""
Me.cboDisposition = ""
Me.TbSN.SetFocus
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top