If the last 5 characters in your field are always numeric characters, use the Len function:
Format((Right([MyField],5)-1),"00000")
for the last 5 numeric characters - 1;
Left([MyField],Len([MyField])-5)
for the charaters before the last five charaters in the string;
[MyField] & " " &...