You can use the left, right, mid function to do this in a query. Then base the report off of your query.
id=9834567891011121
1st digit:left([id],1) = 9
2nd digit: mid([id],2,1)=8
3rd digit: mid([id],3,1)=3 and so on
also try out the right([id],1 and see how that works. You'll use these all...