Hello,
Note: Can not use code on my system. Disabled Mode will not be enabled for me.
My query pulls data that requires carriage returns if there’s data, and no carriage return if there is none. How do I write a concatenating expression with carriage returns, but skip the carriage return if no data precedes the carriage return expression. I’m asking in order to eliminate white space in the query return due to a poorly written expression.
Currently written as [Expr1] + Chr(13) & Chr(10) + [Expr2] + Chr(13) & Chr(10) + etc because I was under the impression that + meant “optional”.
But, I need if [Expr1] is Null then skip the carriage return.
Thank You!
Note: Can not use code on my system. Disabled Mode will not be enabled for me.
My query pulls data that requires carriage returns if there’s data, and no carriage return if there is none. How do I write a concatenating expression with carriage returns, but skip the carriage return if no data precedes the carriage return expression. I’m asking in order to eliminate white space in the query return due to a poorly written expression.
Currently written as [Expr1] + Chr(13) & Chr(10) + [Expr2] + Chr(13) & Chr(10) + etc because I was under the impression that + meant “optional”.
But, I need if [Expr1] is Null then skip the carriage return.
Thank You!
Comment