Apr 30, 2012 #1 young99 Technical User Apr 30, 2012 2 US is it possible to omit records from selection by the length? An example: ID 232 8284725 8323455 3 2242 I would like to only select records that are 7 digits long. I tried making some custom formulas but cant seem to get anything to work.
is it possible to omit records from selection by the length? An example: ID 232 8284725 8323455 3 2242 I would like to only select records that are 7 digits long. I tried making some custom formulas but cant seem to get anything to work.
Apr 30, 2012 #2 lbass Technical User Feb 9, 2002 32,816 US Use a record selection like this: len({table.string})=7 Or if it is of number datatype, use: len(totext({table.number},0,""))=7 -LB Upvote 0 Downvote
Use a record selection like this: len({table.string})=7 Or if it is of number datatype, use: len(totext({table.number},0,""))=7 -LB
Apr 30, 2012 Thread starter #3 young99 Technical User Apr 30, 2012 2 US Thank you. I always over think things. This helped out! Upvote 0 Downvote