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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

wildcard with first letter? 1

Status
Not open for further replies.

vhagerty

Technical User
May 6, 2005
15
0
0
US
CR 9 Enterprise with SQL database

I have a report that groups on the requestors name and has all the details of work by that requestor tied to a subreport. The main report is 68 pages long. I'm trying to find a way to use a wildcard so if the user doesnt remember the exact spelling of the requestors name they can use the first letter of the first name with a wildcard to limit the number of records.

Any suggestions?

Walks
 
In the report->Edit Selection Formula->Record, try:

{table.firstname} like {?MyFirstNameParameter} & "*"

Asterisk is the wildcard for all, a question mark is used for just one wildcard character.

-k
 
That did the trick!!!
*doing happy dance*

Thanks alot Synaps!

Walks =)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top