Re: Concat two columns in a SELECT with NULL (Access)

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hi Martin

You should check if given field is null - did not read it, but I suppose
concatenation of strings, where one of them is null gives you null?
Use following construct (was in help)

select IIf(IsNull([Firstname]), " ", [Firstname]) ...

Peter


.


Quantcast