How to add " in the status of a task query

What I’m trying to do

I want to filter all tasks with the status - ["] TEXT

I have the following query:

TASK
WHERE status ="""

Things I have tried

I also tried using this format:

TASK 
WHERE contains(list("""), status)

Both don’t work of course.

Is it possible to filter for a task status like this?

Try with "\"".

Thanks, works like a charm.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.