pathfinder225
New member
- Local time
- Today, 12:03
- Joined
- Jun 5, 2009
- Messages
- 9
hi frnds, the following is my db schema
My Autonumber field is of the format SExxx (ie SE000,SE001,SE002...)
the following query doesn't work
but this works ..
user will input service_no in format SExxx to retrieve records if the above format doesn't work how can i write queries to retrieve them,i don't have any idea of VBA please help me Thank you.
Code:
service_no:AUTONUMBER
name:Text
day:Date/Time
the following query doesn't work
Code:
select * from table_name where service_no=SE002
but this works ..
Code:
select * from table_name where service_no=2
(or)
select * from table_name where service_no=002
user will input service_no in format SExxx to retrieve records if the above format doesn't work how can i write queries to retrieve them,i don't have any idea of VBA please help me Thank you.