I have a memo field that is printed using Access Reports. Various fields from this table are used to fill in the heading and the body of the report uses that memo field.
I now need to place some CR's & LF's into this memo so that the report is easy to read. I know that I can place the CR's into the ASCII text file before I import, but LF's I cannot because that affects the number of records loaded. I placed the characters <crlf> to indicate where these codes are needed.
I have tried to use the Find/Replace to change this <crlf> into the required codes but I can't insert hex codes (Alt + decimal number) into the replace field, or is there another way to handle the replace field.
Can LF's be inserted into the memo without affecting the memo field? Is there an easy way to do this if LF's are allowed, or is this something that only a VBA script can accomplish?
Thanks for any information on this.
I now need to place some CR's & LF's into this memo so that the report is easy to read. I know that I can place the CR's into the ASCII text file before I import, but LF's I cannot because that affects the number of records loaded. I placed the characters <crlf> to indicate where these codes are needed.
I have tried to use the Find/Replace to change this <crlf> into the required codes but I can't insert hex codes (Alt + decimal number) into the replace field, or is there another way to handle the replace field.
Can LF's be inserted into the memo without affecting the memo field? Is there an easy way to do this if LF's are allowed, or is this something that only a VBA script can accomplish?
Thanks for any information on this.
Comment