In both form & report I need to be able to expand cell to accomodate two
lines of print, eg., street address above city,state & zip in same
cell.....is this possible in Access and, if so, how do I do it??
In a Form, just make the textbox big enough for as many lines as you want.
In a Report, set the textbox's Can Grow property to Yes (there must not be any
other textbox horizontally next to this textbox).
You should have the address, city, state and zip in separate fields in your
table, and ordinarily they'd display in separate textboxes; if for some reason
you need to enter multiline data in one field (that's *field*, not *cell* -
Access doesn't have cells!!!), you can type
FirstLine <Ctrl><Enter>SecondLine
or you can concatenate two fields into two lines in a control with an
expression like
FirstLine & Chr(13) & Chr(10) & SecondLine
in the Control Source of a textbox or in a vacant Field cell in a query.