I would really appreciate the help. Thanks in advance!
Attached is a picture of my userform for a visual reference. My issue is having three options to choose from on my userform to be selected and have the information be transfered into my master sheet. This is the code I have for the form currently but the only information that transfers is the "Manually entered" text box. Any suggestions?
Userform1.PNG
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 1).Value = ListBox1.Text
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 1).Value = ListBox2.Text
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 1).Value = TextBox3.Text
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 2).Value = ListBox3.Text
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 2).Value = ListBox4.Text
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 2).Value = TextBox16.Text
ThisWorkbook.Worksheets("Master Sheet").Cells(lastrow + 1, 3).Value = TextBox4.Text
Bookmarks