SELECT WeldList.*
FROM WeldList
WHERE (
((WeldList.Date)
Between
[Forms]![Frm WeldList Search]![StartDate]
And
[Forms]![Frm WeldList Search]![EndDate])
and
((WeldList.WS)
=
[Forms]![Frm WeldList Search]![Combo8])
);
the value in combo8 may be d5. I need to search all
WeldList.WS fields for the value of d5. I am missing all
the records that may contain d5/68 or some other combination
that contains the d5 value. where do I put the asterisks
in
[Forms]![Frm WeldList Search]![Combo8]
or is there a contain keyword that I am not finding in
acess 97
any help would be appreciated
tomcruz.net
FROM WeldList
WHERE (
((WeldList.Date)
Between
[Forms]![Frm WeldList Search]![StartDate]
And
[Forms]![Frm WeldList Search]![EndDate])
and
((WeldList.WS)
=
[Forms]![Frm WeldList Search]![Combo8])
);
the value in combo8 may be d5. I need to search all
WeldList.WS fields for the value of d5. I am missing all
the records that may contain d5/68 or some other combination
that contains the d5 value. where do I put the asterisks
in
[Forms]![Frm WeldList Search]![Combo8]
or is there a contain keyword that I am not finding in
acess 97
any help would be appreciated
tomcruz.net