Memo field in a combo box

  • Thread starter Thread starter stellJess
  • Start date Start date
S

stellJess

Hi,

have created a combo box that has a memo field. when an item is
selected from the dropDown list, some of the text in the memo field is
left off.

is there a way to get all of the text to be visible.

in advance, thanks for your help.
 
is there a way to get all of the text to be visible.

No.

Instead, have a separate textbox for the memo field; one way to show
it would be to use

=DLookUp("[Memofield]", "
", "[keyfield] = " & ComboName)

using your own table and fieldnames of course.


John W. Vinson[MVP]
 
Back
Top