RRW 8.0 XBase: Special Characters

Meeting place for R&R customers and clients to share tips and ideas. Post your questions, messages or problems here.
Post Reply
Matt_Kiley_(Guest)
Posts: 5
Joined: Tue Oct 10, 2017 12:44 pm

RRW 8.0 XBase: Special Characters

Post by Matt_Kiley_(Guest) » Fri May 24, 2002 5:33 pm

To whom it may concern:____I am interested in where the special characters come from and if I understand the true meaning. __ Examples - __CHKDED->CODE$"940,941,942,943,944,945,946,948,952,953" indicates that in the CHKDED database the field CODE is in the list "940,941,etc".____Should CHKDED->CODE#"940,941,942,943,944,945,946,948,952,953" indicate that in the CHKDED d/b the field CODE is NOT in the list? ____Thank you.__Matt.

kfleming
Posts: 5795
Joined: Tue Oct 10, 2017 12:44 pm

=> RRW 8.0 XBase: Special Characters

Post by kfleming » Mon May 27, 2002 6:44 am

CHKDED->CODE$"940,941,942,943,944,945,946,948,952,953" __does indicates that in the CHKDED database the field CODE is in __the list and would be true for codes 1,2,3,94,40,46 as well so you need to consider that as well.____You could alternatively use:__INLIST(CHKDED->CODE,"940","941","942","943","944","945","946","948","952","953")>0__to test explicitly for this list of values__or __INLIST(CHKDED->CODE,"940","941","942","943","944","945","946","948","952","953")=0__to determine that the current value is not one of these.____Kathleen__R&R Support

Matt_Kiley_(Guest)
Posts: 5
Joined: Tue Oct 10, 2017 12:44 pm

==> RRW 8.0 XBase: Special Characters

Post by Matt_Kiley_(Guest) » Wed Jun 05, 2002 6:09 pm

Thank you. Your ^tip^ below helped.____PS - Those that read this should be aware that using >0 at the end of the INLIST() function will change it from a numeric to a logic field (T/F).____Sincerely,__matthew_kiley@dell.com

Post Reply