I am combining 4 fields in my table into one. The third field is often either Null or an empty string. I know to exclude the Null values you use the + instead of &.
SELECT Name & ' ' & Type & ' (' + SRNumber + ')' & ' ' & City AS FullName
That works great when SRNumber is Null. But many times it is blank. If so, I get the parentheses - it does not exclude the field. Is there a way to exclude SRNumber if it contains an empty string?
Thanks in advance...
SELECT Name & ' ' & Type & ' (' + SRNumber + ')' & ' ' & City AS FullName
That works great when SRNumber is Null. But many times it is blank. If so, I get the parentheses - it does not exclude the field. Is there a way to exclude SRNumber if it contains an empty string?
Thanks in advance...