i am trying to put a space between title_the and title ONLY if title_the is
not null. below is what i have, but it is returning the empty space
regardless of whether the value is null or not. ideas? thanks!
iif(title_the is null, '', [title_the] & ' ') +''+ title as movie
salad - 04 Jun 2006 05:29 GMT
> i am trying to put a space between title_the and title ONLY if title_the is
> not null. below is what i have, but it is returning the empty space
> regardless of whether the value is null or not. ideas? thanks!
>
> iif(title_the is null, '', [title_the] & ' ') +''+ title as movie
iif(IsNull(title_the), "", [title_the] & " ") & title as movie