You are just assigning the string "FirstList" as the RowSource. You need to
assign the address of the FirstList named range, as follows:
Sub TEST()
Dim myvar As String
UserForm1.ComboBox1.RowSource = Range("FirstList").Address
myvar$ = Application.WorksheetFunction.VLookup("CC", _
Range(UserForm1.ComboBox1.RowSource), 3, False)
MsgBox myvar$
End Sub
I also recommend including the userform Name as a qualifier when you refer to
the
combobox (you might get an "Object required" error otherwise).