Access 2010
Windows
Hi....I have encountered a couple of questions that seem to have left me puzzled even though I was not expecting it to be difficult.
I am working on a report that will print a letter. I want my text box to be formatted like a paragraph. When setting up an email to send and going through code builder, I have previously used the chr(10) and chr(13) to do indents and carriage returns. I can not seem to get any of this to work inside the text box. This is what I currently have (although I have had this about 10 different ways trying to get it to work):
I want it to look like this when printed:
Any suggestions? I would like to be able to do everything inside one text box.
Thanks so much.
Windows
Hi....I have encountered a couple of questions that seem to have left me puzzled even though I was not expecting it to be difficult.
I am working on a report that will print a letter. I want my text box to be formatted like a paragraph. When setting up an email to send and going through code builder, I have previously used the chr(10) and chr(13) to do indents and carriage returns. I can not seem to get any of this to work inside the text box. This is what I currently have (although I have had this about 10 different ways trying to get it to work):
Code:
=IIf([Region]="EU",[txt_C_EU_MainLetter],[txt_C_nonEU_MainLetter]) & " We appreciate your support and wish you every success for " & [ctlNextYr] & "."
Text from [txt_C_EU_MainLe tter] or [txt_C_nonEU_Mai nLetter]
<blank line>
We appreciate your support and wish you every success for xxxx.
<blank line>
We appreciate your support and wish you every success for xxxx.
Any suggestions? I would like to be able to do everything inside one text box.
Thanks so much.
Comment