Feb 20, 2005 #1 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
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
Feb 21, 2005 1 #2 lupins46 MIS Feb 19, 2004 2,509 GB 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? Upvote 0 Downvote
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?
Feb 21, 2005 Thread starter #3 petrovlis Programmer Jan 15, 2002 114 NL YES I mean I want to select RECORDS which do not have a # in a particular field Thnaks for further help William Upvote 0 Downvote
YES I mean I want to select RECORDS which do not have a # in a particular field Thnaks for further help William
Feb 21, 2005 #4 lupins46 MIS Feb 19, 2004 2,509 GB Use the Select Expert and choose 'is not like' from the drop-down and put *#* in the value box. Upvote 0 Downvote
Feb 21, 2005 #5 dgillz Instructor Mar 2, 2001 10,045 US 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 http://www.gainfocus.biz Upvote 0 Downvote
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 http://www.gainfocus.biz