I
Ihar
Hi
I have a form, with multiple fields which then get concatenated to a single
memo field on the form.
The output I am after is that the information that gets added will have a
blank line after it and the then the rest of the information that is already
in the destination field
I can do the concatenation ok, but I am unable to insert the carriage return
at the end of the string. I have tried the code below and it does not work,
any suggestion would be most welcome
Me!Description = Me![Date] & " By: " & Me![By] & ", For: " & Me!For & ", - "
& Me!NewDescription & Chr(10) & Chr(10) & Me!Description
While this codes adds the string perfectly, it does not add the required
carriage returns. I have tried with codes 10 (Line Feed) and 13 (carriage
return) but to no avail
I am using Access 2007.
Thanks in advance
I have a form, with multiple fields which then get concatenated to a single
memo field on the form.
The output I am after is that the information that gets added will have a
blank line after it and the then the rest of the information that is already
in the destination field
I can do the concatenation ok, but I am unable to insert the carriage return
at the end of the string. I have tried the code below and it does not work,
any suggestion would be most welcome
Me!Description = Me![Date] & " By: " & Me![By] & ", For: " & Me!For & ", - "
& Me!NewDescription & Chr(10) & Chr(10) & Me!Description
While this codes adds the string perfectly, it does not add the required
carriage returns. I have tried with codes 10 (Line Feed) and 13 (carriage
return) but to no avail
I am using Access 2007.
Thanks in advance