Nov 1, 2004 #1 UHsoccer Programmer Apr 24, 2003 139 US How do I create a select statement that lets me select companies names starting with a,b,c,etc through whatever. I typically would need do select: a-h, then i-n, then o-z I am running V8.5
How do I create a select statement that lets me select companies names starting with a,b,c,etc through whatever. I typically would need do select: a-h, then i-n, then o-z I am running V8.5
Nov 1, 2004 #2 dgillz Instructor Mar 2, 2001 10,045 US Insert, field object, parameter field, and make the parameter field a text datatype that accepts range values. Step 2 is to write a record selection formula for the report.: {Table.Namefield} in {?RangeParmField} From then on the parameter will prompt the user when the report is run and the user would pick the range. Software Sales, Training, Implementation and Support for Exact Macola, eSynergy, and Crystal Reports askdon@srhconsulting.com http://www.srhconsulting.com Upvote 0 Downvote
Insert, field object, parameter field, and make the parameter field a text datatype that accepts range values. Step 2 is to write a record selection formula for the report.: {Table.Namefield} in {?RangeParmField} From then on the parameter will prompt the user when the report is run and the user would pick the range. Software Sales, Training, Implementation and Support for Exact Macola, eSynergy, and Crystal Reports askdon@srhconsulting.com http://www.srhconsulting.com
Nov 1, 2004 1 #3 synapsevampire Programmer Mar 23, 2002 20,180 US Slight adjustment to the proposed notion: left({Table.Namefield},1) in {?RangeParmField} -k Upvote 0 Downvote
Nov 1, 2004 Thread starter #4 UHsoccer Programmer Apr 24, 2003 139 US Thanks this works great Upvote 0 Downvote