Do what Darrel says.

However, if you need to intermix things in a LOOKUP table, then here is a method to achieve that:

Code:
lbl_1stPlace CON $FF
lbl_2ndPlace CON $FE
lbl_3rdPlace CON $FD
lbl_4thPlace CON $FC
My_Index_Var VAR WORD
MY_LOOKUP_Var VAR WORD

'-----------------------------------------------------------------

LOOKUP My_Index_Var, [1,2, lbl_1stPlace,3,4, lbl_2ndPlace ,5,6, lbl_3rdPlace,7,8, lbl_4thPlace,9,10], MY_LOOKUP_Var
SELECT CASE MY_LOOKUP_Var
 CASE lbl_1stPlace GOTO 1stPlace
 CASE lbl_2ndPlace GOTO 2ndPlace
 CASE lbl_3rdPlace GOTO 3rdPlace
 CASE lbl_4thPlace GOTO 4thPlace
END SELECT

'-----------------------------------------------------------------
1stPlace:

'-----------------------------------------------------------------
2ndPlace:

'-----------------------------------------------------------------
3rdPlace:

'-----------------------------------------------------------------
4thPlace: