huytonscouser
Programmer
I have a formula that "Joins" data to create a single string.
uppercase(Join(data,","))
This formula can return strings in excess of 255 characters.
But when exported to excel, if the 1st row is not > 255 characters then the field
type is String[255] and some data is truncated.
When the 1st row(or when i force it) is > 255 characters, then the field type is
Memo and all the joined strings are present.
So whats the best way to always ensure the formula field always produces at least 256 chars,
so that the export field will yield a Memo type?
1. Pad the data with "spaces" upto 256 characters.
2. Is there anyway to force a memo type ?
Thanks in advance.
uppercase(Join(data,","))
This formula can return strings in excess of 255 characters.
But when exported to excel, if the 1st row is not > 255 characters then the field
type is String[255] and some data is truncated.
When the 1st row(or when i force it) is > 255 characters, then the field type is
Memo and all the joined strings are present.
So whats the best way to always ensure the formula field always produces at least 256 chars,
so that the export field will yield a Memo type?
1. Pad the data with "spaces" upto 256 characters.
2. Is there anyway to force a memo type ?
Thanks in advance.