I can update a field just fine with Update [Table] Set [Field] = "PASS".
But if I try to set the field equal to a case statement I get an error that says "Provider error `(-2147217900) Syntax error (missing operator) in query expression '(case when".
Here is the exact query I'm using:
Update [TableName] set [Sector Lat Valid] = case when [RBS Lat] is null then "NA" when [RBS Lat]>=0 and [RBS Long]<=90 then "PASS" else "FAIL" end
Does anyone have an idea what I'm doing wrong? Thanks in advance?