May 28, 2008 #1 shricky Programmer Joined Mar 6, 2007 Messages 17 Location US how do i turn this into a crystal function? SUBSTR (col.user_1, INSTR (col.user_1, '.') + 1) I am asking it to find the . (10.34009) and return the 34009.
how do i turn this into a crystal function? SUBSTR (col.user_1, INSTR (col.user_1, '.') + 1) I am asking it to find the . (10.34009) and return the 34009.
May 28, 2008 #2 lbass Technical User Joined Feb 9, 2002 Messages 32,818 Location US Try: mid({col.user_1},instr({col.user},".")+1) -LB Upvote 0 Downvote