I have a lot of lines in a data set that look something like this:
006MSP95228184
006ATL95228195
006ORD95485250
I don't care about anything but the 95228184, so I used the following function to rid myself of it:
=IF(LEFT(A1,3)="006",RIGHT(A1,8),"")
RESULT: 95228184 - excellent right...