I am trying to modify some code in a custom app. I am not an expert programmer.
More self taught.
This is the current code.
"status": ["!=", "Closed"]
From what I understand, the above code is, all sales orders that do not have “Closed” status.
What I need is, all sales orders that do not have “Closed” and “Draft” status.
AI is saying the following but I do not trust AI.
"status": ["not in", ["Closed", "Draft"]]
Need advice on right way to do this.