
For this table, I have two null value in suburb and postcode. I want to change 'IsValid' column into "N" if the suburb, and postcode is "Null". otherwise the 'IsValid' is "Y"
Here's my expression:
LEN(LTRIM(RTRIM(School_Suburb))) == 0 ||
LEN(LTRIM(RTRIM(School_Postcode))) == 0 ||
ISNULL(School_Suburb) ||
ISNULL(School_Postcode) ? "N" : "Y"
and this is the error message.

So just wondering if anyone know which part I wrote it wrong? How can I change it?

