Memo Field in a report containing fields from a form

Z

ZOYA

This is what I have: ( I have each "section" of text as seperate text fields
in order to plug in the [field name]) in between the text.)

Basis: On [First Notice Date] the owner was given notice to remove
rubbish from the property. On [Follow up Date] city went to residence and
removed the rubbish at a cost of [fee]. City invoiced owner on [invoice
date]. Owner failed to pay the invoice within 30 days.

My question. The fields fill in with the info from the form just fine, but
the spacing is all screwed up, especially if the date is May instead of
September; then there's a huge blank space after the date. It's accurate,
but it looks dumb. Can anyone help me with this?

Thanks
 
M

Marshall Barton

ZOYA said:
This is what I have: ( I have each "section" of text as seperate text fields
in order to plug in the [field name]) in between the text.)

Basis: On [First Notice Date] the owner was given notice to remove
rubbish from the property. On [Follow up Date] city went to residence and
removed the rubbish at a cost of [fee]. City invoiced owner on [invoice
date]. Owner failed to pay the invoice within 30 days.

My question. The fields fill in with the info from the form just fine, but
the spacing is all screwed up, especially if the date is May instead of
September; then there's a huge blank space after the date. It's accurate,
but it looks dumb.


Use a single text box and concatenate the "sections" in its
expression:

="On " & [First Notice Date] & " the owner was ..." & ...
 
Z

ZOYA

OK - that worked beautifully - but now the date is coming out 06/23/2008
instead of June 23, 2008. I changed the date format to long date in the
table, query, field properties in the form and on the report, and on my
system. Still happens. What did I miss?

Marshall Barton said:
ZOYA said:
This is what I have: ( I have each "section" of text as seperate text fields
in order to plug in the [field name]) in between the text.)

Basis: On [First Notice Date] the owner was given notice to remove
rubbish from the property. On [Follow up Date] city went to residence and
removed the rubbish at a cost of [fee]. City invoiced owner on [invoice
date]. Owner failed to pay the invoice within 30 days.

My question. The fields fill in with the info from the form just fine, but
the spacing is all screwed up, especially if the date is May instead of
September; then there's a huge blank space after the date. It's accurate,
but it looks dumb.


Use a single text box and concatenate the "sections" in its
expression:

="On " & [First Notice Date] & " the owner was ..." & ...
 
M

Marshall Barton

The Format property is applied to the result of the
expression, not to various values in the expression. To get
what you want use the Format function in the expression:

="On " & Format([First Notice Date], "mmmm dd, yyyy") & "
the owner was ..." & ...
--
Marsh
MVP [MS Access]

OK - that worked beautifully - but now the date is coming out 06/23/2008
instead of June 23, 2008. I changed the date format to long date in the
table, query, field properties in the form and on the report, and on my
system.

Marshall Barton said:
Use a single text box and concatenate the "sections" in its
expression:

="On " & [First Notice Date] & " the owner was ..." & ...
 

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