Hi
Try this example in the attachment
Basically the query uses two inbuilt functions mid and len
Mid requires 3 pieces of information
1) The data you want to view
2) The position you want to start at
3) The position you want to finish at.
You know you don't want the first 2 digits so you can enter 2 for the start position.
mid(101,2 ...
As you want everthing to the right of 10 but you may not know how long the data is you can use the len() function to return the length of the whole data, item in this case 3.
so mid(101,2,len(100))
is mid(101,2,3)
Hope that helps
Chris