Hi is it possible to return the first value from a named range in a textbox on a userform?

Currently I am using this code to return a list to choose from, I am testing a way to do this with FLOWRAP


Private Sub jobtype_Exit(ByVal Cancel As MSForms.ReturnBoolean)

Select Case jobtype.Value & category.Value
Case Is = "FLOWRAP" & "Stone Fruit": TextBox94.Value = "FLOWWRAPJOB"
End Select

Select Case jobtype.Value & category.Value
Case Is = "HEAT" & "Stone Fruit": jobdescription.RowSource = "Jobs!HEATJOB"
Case Is = "FLOWRAP" & "Stone Fruit": jobdescription.RowSource = "Jobs!FLOWRAPJOB"
Case Is = "NET" & "Stone Fruit": jobdescription.RowSource = "Jobs!NETJOB"
Case Is = "WEIGHT" & "Stone Fruit": jobdescription.RowSource = "Jobs!WEIGHTJOB"
Case Is = "COUNT" & "Stone Fruit": jobdescription.RowSource = "Jobs!COUNTJOB"
Case Is = "DECANT" & "Stone Fruit": jobdescription.RowSource = "Jobs!DECANTJOB"
Case Is = "GIRO" & "Tropical": jobdescription.RowSource = "Jobs!GIROJOB"
Case Is = "WRAP" & "Tropical": jobdescription.RowSource = "Jobs!WRAPJOB"
Case Is = "PACK" & "Tropical": jobdescription.RowSource = "Jobs!PACKJOB"
Case Is = "COUNT" & "Tropical": jobdescription.RowSource = "Jobs!TROPCOUNTJOB"
End Select



End Sub
What I want to do is for this example there are 8 values in the named range "FLOWRAP"

In textbox95 I want to return the first value in that named rang, box96 the 2nd, box 97 the 3rd and so on........

is this possible, if so what do I need to put in my code
Texbox95.value =
Any help is great as I cant find anything to help me searching the internet!

Thanks

Dan