Memo Field needs to include field name within field.

L

LMW

I need to add a memo field into a report and I need to have the data preceded
by Note:. I used the expression "Note:"&" "&[Note] and now it appears I
have a text field not a memo field. What is the best fix for this?
 
T

Tom van Stiphout

On Fri, 20 Nov 2009 14:11:04 -0800, LMW

Works fine for me, with a few changes:
="Note:" & " " & [Note]
I'm sure it will for you too.

-Tom.
Microsoft Access MVP
 
D

Douglas J. Steele

I suspect that the OP had "Note:" & " " & [Note] in the query that's used
as the report's RecordSource, and I believe that will convert the memo to
text.

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Tom van Stiphout said:
On Fri, 20 Nov 2009 14:11:04 -0800, LMW

Works fine for me, with a few changes:
="Note:" & " " & [Note]
I'm sure it will for you too.

-Tom.
Microsoft Access MVP

I need to add a memo field into a report and I need to have the data
preceded
by Note:. I used the expression "Note:"&" "&[Note] and now it appears I
have a text field not a memo field. What is the best fix for this?
 
T

Tom van Stiphout

On Sat, 21 Nov 2009 06:51:17 -0500, "Douglas J. Steele"

Yes, that's possible. I did mine as an expression in the ControlSource
of the control on the report, and I did get the full memo text, not
just the first 255 chars.

-Tom.
Microsoft Access MVP
 
L

LMW

I need the field to expand and I have another field right below it. If I
leave the label on the report the first field could expand and the second
label wouldn't be aligned.

Douglas J. Steele said:
Can you not just have a label on the report that says Note:?

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)



LMW said:
I need to add a memo field into a report and I need to have the data
preceded
by Note:. I used the expression "Note:"&" "&[Note] and now it appears I
have a text field not a memo field. What is the best fix for this?

.
 
L

LMW

That is correct. That was my first attempt.

Douglas J. Steele said:
I suspect that the OP had "Note:" & " " & [Note] in the query that's used
as the report's RecordSource, and I believe that will convert the memo to
text.

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Tom van Stiphout said:
On Fri, 20 Nov 2009 14:11:04 -0800, LMW

Works fine for me, with a few changes:
="Note:" & " " & [Note]
I'm sure it will for you too.

-Tom.
Microsoft Access MVP

I need to add a memo field into a report and I need to have the data
preceded
by Note:. I used the expression "Note:"&" "&[Note] and now it appears I
have a text field not a memo field. What is the best fix for this?


.
 
L

LMW

That worked great. Thank you!

Tom van Stiphout said:
On Sat, 21 Nov 2009 06:51:17 -0500, "Douglas J. Steele"

Yes, that's possible. I did mine as an expression in the ControlSource
of the control on the report, and I did get the full memo text, not
just the first 255 chars.

-Tom.
Microsoft Access MVP

I suspect that the OP had "Note:" & " " & [Note] in the query that's used
as the report's RecordSource, and I believe that will convert the memo to
text.
.
 

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