I've got two tables in my database, and I'm trying to link the memo fieldin
one, to the memo field in the second table. Is it possible to link these
fields (if so how) and if not, do I just manually enter this data?
(There is maybe a more sophisticated way than this) You could try
creating a new date field in each table and pasting the memo data into
that field.
But if you really want to do a join on the memo, if the dates are
formatted identically you could use the Left function to join on the
first 10 characters (assuming the dates are in mm/dd/yyyy format,
which is 10 characters). So the SQL would look like below (you can't
do it in design view). Note that if you have one date entered as
10/1/2009 and another as 10/01/2009 they will not match. If you paste
into a date field it will, though.
SELECT [table1].[memofield2], [table1].[thingtocompare], [table2].
[thingtocompare]
FROM table1 INNER JOIN table2 ON left([table1].[memofield2],10)=left
([table2].[memofield1],10);