Hello,
I have an issue when trying to apply a where clause to some of my LabelClass.
My first where clause is working fine:
where: `STATUS = 'Done'`,
This one not:
where: `STATUS = 'To Do'`,
I think it's because there is a space in my value.
I have also tried this, but it's not working:
where: `STATUS IN ('To Do')`,
In ArcMap this where clause is working fine.
Do you know how to solve this?