Tonesterman
MIS
My company has a DB that has a memo field that is VERY long. Is there any way to adjust the display format of this field. As of right now I am trying the following:
Mid([LONG_MEMO_FIELD],1,65), Mid([LONG_MEMO_FIELD],66,65), Mid([LONG_MEMO_FIELD],131,65), Mid([LONG_MEMO_FIELD],196,65). But this way puts each line in a column, and I would prefer it all in one field.
My goal is to display all the lines of data in a letter. The max characters in a like is 65, but the amount of lines is not fixed. Hopefully this makes since.
Any help would be great!
Mid([LONG_MEMO_FIELD],1,65), Mid([LONG_MEMO_FIELD],66,65), Mid([LONG_MEMO_FIELD],131,65), Mid([LONG_MEMO_FIELD],196,65). But this way puts each line in a column, and I would prefer it all in one field.
My goal is to display all the lines of data in a letter. The max characters in a like is 65, but the amount of lines is not fixed. Hopefully this makes since.
Any help would be great!