reusing code for different userfroms

ExHelper

New Member
Joined
Jan 17, 2012
Messages
1
I am a newbe. I have created 4 userforms to input seminar evaluation data for each of the 4 periods. Each UF has directly coded outputs to specific cells in 8 columns. I believe I could put the identical events into a module and call it up for each UF but I don't know how to get the option button output for each UF into its own columns on the spreadsheet. Here is a part of the code for one UF:

Option Explicit
Dim r As Variant
Private Sub kcmd_enter_Click()
r = Application.WorksheetFunction.CountA(Range("a:a")) + 1
'Insert k1 Knowledge rating
Select Case True
Case obk15
Cells(r, 1) = 5
Case obk14
Cells(r, 1) = 4
Case obk13
Cells(r, 1) = 3
Case obk12
Cells(r, 1) = 2
Case obk11
Cells(r, 1) = 1
Case obk1NA
Cells(r, 1) = "na"
Case Else: Cells(r, 1) = "No Data"
End Select

'Insert k2 skill rating
Select Case True
Case obk25
Cells(r, 2) = 5
Case obk24
Cells(r, 2) = 4
Case obk23
Cells(r, 2) = 3
Case obk22
Cells(r, 2) = 2
Case obk21
Cells(r, 2) = 1
Case obk2NA
Cells(r, 2) = "na"
Case Else: Cells(r, 2) = "No Data"
End Select
'insert comment
Cells(r, 7) = tbk7CMT.Text

Unload Me

UserFormS1.Show

End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.

Forum statistics

Threads
1,215,731
Messages
6,126,537
Members
449,316
Latest member
sravya

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