I'm trying to create a Query based on an evaluation of an empty field.
Item: [Huis] & IIf(IsNull([Naam]), "", " / " & [Naam]) & IIf(IsNull([Druif]), "", " / " & [Druif]) & iif(IsNull([Type]), "", " / " & [Type])
It gives me a syntax error: Missing an operand or operator, you have entered an invalid character or comma or you have not enclosed the text in the expression in quotation marks.
I have tried other examples that are supposed to work here on stackoverflow, they all give the same error. What am I doing wrong?