Guys,
I am still learning this one...could you please help me out with how to output the result to the next worksheet...
I have this one and it outputs the data on the active worksheet sheets (1) then the next data is encoded on the next column :
Private Sub OKCommandButton1_Click()
Dim emptyRow As Long
'Make List Active
Sheets(1).Activate
'Determine emptyRow
emptyRow = WorksheetFunction.CountA(Range("A:A")) + 1
'Export Data to worksheet
Cells(emptyRow, 1).Value = ActivityNameTextBox.Value
If ActivityCheckBox1.Value = True Then Cells(emptyRow, 2).Value = ActivityCheckBox1.Caption
If ActivityCheckBox2.Value = True Then Cells(emptyRow, 2).Value = Cells(emptyRow, 2).Value & " " & ActivityCheckBox2.Caption
...