3

Having some difficulty figuring out "and" statements as i am quite new to GIS. What errors am I making in this statement here?

STATUS = 'QC Required' and WORKFROMHOMEEMPLOYEES = 'NULL'

1 Answers1

5

Use is Null to select Null values. By using = 'NULL' you select a string containing this word. So use:

STATUS = 'QC Required' and WORKFROMHOMEEMPLOYEES IS NULL
MrXsquared
  • 34,292
  • 21
  • 67
  • 117