Ok, so I am trying to make a form on sheet1 for user input with a button to record the data on sheet2. For the life of me, I cannot figure out why I cannot get the data to sheet2. It worked one time after I used the record macro and I duplicated what was in the module. But now, I cannot seem to get anything to work.
I was hoping to avoid jumping back and forth between the sheets and copy/pasting each line, but I was having trouble using variables as well.
Here is what I have:
I was hoping to avoid jumping back and forth between the sheets and copy/pasting each line, but I was having trouble using variables as well.
Here is what I have:
Code:
Sub Record_Click()
Range("B5").Select
Selection.Copy
Sheets("Vet List").Activate
ActiveSheet.Range("B1").End(xlDown).Select
ActiveSheet.Selection.Offset(1, 0).Paste
End Sub