May 28, 2008 #1 shricky Programmer Mar 6, 2007 17 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 Feb 9, 2002 32,816 US Try: mid({col.user_1},instr({col.user},".")+1) -LB Upvote 0 Downvote