J
Jay
Hi all -
I'm trying to concatenate strings in a calculated query field. Although
Access accepts the formula, the length of the calculated field is limited to
about 254-256 characters (I keep losing count, but it's right in the magical
256 character neighborhood).
The following calculated field "Cat" demonstrates the formula. It
concatenates two short text fields with a memo field ('Desription').
Actually, I'd like to concatenate the first 300 characters of the memo field.
Any advice on whether the limit can be lifted or why this happens would be
appreciated.
Cat: [Source] & " : " & [Category] & " : " & [SubCategory] &
IIf(IsNull(Trim([Description])),""," (" & Left([Description],300) & ")")
I'm trying to concatenate strings in a calculated query field. Although
Access accepts the formula, the length of the calculated field is limited to
about 254-256 characters (I keep losing count, but it's right in the magical
256 character neighborhood).
The following calculated field "Cat" demonstrates the formula. It
concatenates two short text fields with a memo field ('Desription').
Actually, I'd like to concatenate the first 300 characters of the memo field.
Any advice on whether the limit can be lifted or why this happens would be
appreciated.
Cat: [Source] & " : " & [Category] & " : " & [SubCategory] &
IIf(IsNull(Trim([Description])),""," (" & Left([Description],300) & ")")