Private Sub UserForm_Initialize()
'Adjust to suit the range of records you want.
ListBox1.List = Application.Worksheets("Sheet1").Range("A2:C3").Value grade calculator
ListBox1.RowSource = "Sheet1!A2:C3"
End Sub
I plan to manipulate the user selections later, but that's a separate task for now.
Is there a way to achieve this using VBA? Any code examples or resources you can recommend would be greatly appreciated.