R
Rick
I have a list which includes several names which begin
with the asterisk character. For example:
***
*** School
*** Illness
*** Vacation
Job Assignment
Course Instructor
*** Time Off Personal
Travel
I am attempting to write a query to exclude anything in
the list beginning with three asterisks "***"
I have attempted to use literals and ANSI character set
chr(42)for * and chr(37) for % without success.
The criteria I have attempted:
Not chr(42) & chr(42) & chr(42) & chr(37)
Not "*" & "*" & "*" & "%"
Not (*) & (*) & (*) & (%)
Can anyone suggest the correct syntax for this criteria.
TIA
with the asterisk character. For example:
***
*** School
*** Illness
*** Vacation
Job Assignment
Course Instructor
*** Time Off Personal
Travel
I am attempting to write a query to exclude anything in
the list beginning with three asterisks "***"
I have attempted to use literals and ANSI character set
chr(42)for * and chr(37) for % without success.
The criteria I have attempted:
Not chr(42) & chr(42) & chr(42) & chr(37)
Not "*" & "*" & "*" & "%"
Not (*) & (*) & (*) & (%)
Can anyone suggest the correct syntax for this criteria.
TIA