In Access 2000, I have a function that concatenates text.
I use this function in a query, for use in a report.
I want the result to look like a memo field, so when concatinating the text I insert line feeds. e.g
Output = "Line 1" & vbLf & "Line 2" & vbLf & "Line 3"
I want the result to look like this:
Line 1
Line 2
Line 3
What I get is:
Line 1 {Square} Line 2 {square} Line 3
how do I get this to appear like a memo field?
I use this function in a query, for use in a report.
I want the result to look like a memo field, so when concatinating the text I insert line feeds. e.g
Output = "Line 1" & vbLf & "Line 2" & vbLf & "Line 3"
I want the result to look like this:
Line 1
Line 2
Line 3
What I get is:
Line 1 {Square} Line 2 {square} Line 3
how do I get this to appear like a memo field?