Nov 1, 2004 #1 UHsoccer Programmer Joined Apr 24, 2003 Messages 139 Location 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 Joined Mar 2, 2001 Messages 10,059 Location 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 Joined Mar 23, 2002 Messages 20,180 Location 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 Joined Apr 24, 2003 Messages 139 Location US Thanks this works great Upvote 0 Downvote