Memo in list box

G

-=Gillian

Hi,

Is there any way to put a memo field in a list box, at
least for searching purposes? (even if it cuts part of
the text off), thanks in advance.

Gill
 
J

John Spencer (MVP)

Yes, you can get up to 255 characters by using one of the string functions.

Sample SQL statement as Records Source for a listbox.

SELECT Left(SomeMemo,100) as StartMemo
FROM TableName
ORDER BY Left(SomeMemo,100)
 

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

Top