Problem with retreiving dates in memo text box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've created a form with a memo text box. Into the memo i write down dates
and details fom specific dates. I want to design a query which will return to
me from all records specific dates and off course details from these dates
too that i decide. I tried the following but it returns everything back. The
code i tried is:

Criteria:[date?] Like "??/??/????"

Any help on this?
 
STEFANOS said:
I've created a form with a memo text box. Into the memo i write down dates
and details fom specific dates. I want to design a query which will return to
me from all records specific dates and off course details from these dates
too that i decide. I tried the following but it returns everything back. The
code i tried is:

Criteria:[date?] Like "??/??/????"


That's not going to work. Packing multiple values into a
single field is a gigantic NO-NO in a database, any
database, even an Excel database.

Instead you need to have another table with fields for the
date and detail. then you can query that table very easily.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top