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

How to filter out field-string not containing # sign ?? 1

Status
Not open for further replies.

petrovlis

Programmer
Jan 15, 2002
114
NL
I have to filter out fields which contains sometimes
somewhere in the field the # sign.
like
Field 1: abc#fag
or
Field 1: a#hdgaf

etc

tried to find in help file but cannot find it so easily.
Thanks for help
William
 
What do mean by 'filter out fields'?
Do you mean you only want to select RECORDS which do not have a # in a particular field?
 
YES I mean I want to select RECORDS which do not have a # in a particular field

Thnaks for further help
William
 
Use the Select Expert and choose 'is not like' from the drop-down and put *#* in the value box.
 
Write a record selection formula:

Instr({YourField},"#")=0

This will give you all the records tat do ot contain a # anywhere in the field.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top