|
Avangard Newbie
Joined: 23 Aug 2004 Posts: 5
|
Posted: Tue Aug 24, 2004 1:25 am
#IF comparing one to many |
#IF %lower( "%2")!=( %lower( @FilterSchool)) {#GAG}
@FilterSchool is a list of values ie {A|b|C|DE|g}
how do i make it compare the value in %2 to each value in @FilterSchool
and send #GAG if it doesn't find one that matches? |
|
|
|
nexela Wizard
Joined: 15 Jan 2002 Posts: 1644 Location: USA
|
Posted: Tue Aug 24, 2004 1:42 am |
#IF (!%ismember(%lower("%2"),%lower(@FilterSchool))) {#GAG}
|
|
|
|
|
|