See if the attached is of any help.
Here's what was done:
One worksheets holds a list of names and is the RowSource for a combobox. This list is a dynamic named range.
Each item in the list is the name of a worksheet
This basic code pass the value of the combobox as the string for the worksheet name.
Private Sub CommandButton1_Click()
Dim strName As String
strName = ComboBox1.Value
With Worksheets(strName)
Dim lrow As Range
Set lrow = Worksheets(strName).Range("A65536").End(xlUp).Offset(1, 0)
lrow.Value = TextBox1.Value
End With
Unload Me
End Sub
Bookmarks