Hi I hope someone can shed some light. I have been designing a user form in Excel. I now want the value to transfer to Sheet3 in column 9 of the next available empty space instead of the active sheet. Can someone tell me how can I change my code below to go to Sheet 3? Many thanks for your help
Private Sub Command2_Click()
Dim emptyRow As Long
emptyRow = WorksheetFunction.CountA(Range("A:A")) + 1
Cells(emptyRow, 9).Value = Explanation2.Value
Unload Me
End Sub