Hi Darrel

Thanks for the assistance :-)
The LOOKUP change was the easiest solution !

originally I had this
Code:
@ READKEYPAD _myvar  'read keypress variable and place in myvar

LOOKUP myvar,[0,"123A456B789C*0#D"],myvar 'use lookup table to diplay proper keypress
And I just changed the line to this
Code:
@ READKEYPAD _myvar  'read keypress variable and place in myvar
   LOOKUP myvar,[0,"D#0*C987B654A321"],myvar
Thanks a million , it saves me having to redo my dev board design or re-wiring the keypad :-) YAY

Kind regards
Dennis