I'm trying to make this user form output option button results at the end of a column. Originally I tried using the same i in the for next loop that I have in my main module, but the user form wouldn't recognize the variable, even after dimensioning it as public. Any ideas?
Private Sub cmdOk_Click()
If opt1 Then
Range(Range(“E3”), Range(“E3”).End(xlDown)) = "None"
ElseIf opt2 Then
Range(Range(“E3”), Range(“E3”).End(xlDown)) = "3/8 Plain"
ElseIf opt3 Then
Range(Range(“E3”), Range(“E3”).End(xlDown)) = "1/2 Plain"
ElseIf opt4 Then
Range(Range(“E3”), Range(“E3”).End(xlDown)) = "1/2 Herringbone"
ElseIf opt5 Then
Range(Range(“E3”), Range(“E3”).End(xlDown)) = "1/2 Diamond"
End If
Unload frmLagging
End Sub