Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select with "startswith a through h" 1

Status
Not open for further replies.

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
 
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
 
Slight adjustment to the proposed notion:

left({Table.Namefield},1) in {?RangeParmField}

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top