J
Jennifer
I have an update query with the following where statement:
WHERE (([SpecialtiesParsed]![Number]="1") AND
([SpecialtiesParsed]![Number]="1")) OR (([SpecialtiesParsed]![Number]="2")
AND ([SpecialtiesParsed]![Number]="2")) OR
(([SpecialtiesParsed]![Number]="3") AND ([SpecialtiesParsed]![Number]="3"))
OR (([SpecialtiesParsed]![Number]="3") AND
([SpecialtiesParsed]![Number]="3"));
The SpecialtesParsed!Number is a number field, not a text field.
The query works fine if I go to my SpecialtiesParsed Table and convert the
Number field to text, however, that is not a good solution, since I need the
data to be a number for other purposes.
I cannot seem to find a way to stop access from assuming this is a text
field when I type the criteria.
Any Ideas?
Any ideas?
WHERE (([SpecialtiesParsed]![Number]="1") AND
([SpecialtiesParsed]![Number]="1")) OR (([SpecialtiesParsed]![Number]="2")
AND ([SpecialtiesParsed]![Number]="2")) OR
(([SpecialtiesParsed]![Number]="3") AND ([SpecialtiesParsed]![Number]="3"))
OR (([SpecialtiesParsed]![Number]="3") AND
([SpecialtiesParsed]![Number]="3"));
The SpecialtesParsed!Number is a number field, not a text field.
The query works fine if I go to my SpecialtiesParsed Table and convert the
Number field to text, however, that is not a good solution, since I need the
data to be a number for other purposes.
I cannot seem to find a way to stop access from assuming this is a text
field when I type the criteria.
Any Ideas?
Any ideas?