I can update a field just fine with Update eTable] Set tField] = "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 UTableName] set eSector Lat Valid] = case when eRBS 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?