How do I create initial filters in datagrid?

Hi,
I have a datagrid looking like this:

I tried this initial filters but it doesn’t work:

return {
  "Status": {
    "type": "contains",
    "filter": "not"
  }
}

And this is how the column looks like in the datagrid:

It’s either:
“Done”
or “Not done”

What am I doing wrong?

there should be a setting for that within the datagrid settings!

1 Like

Indeed. I tried with the code mentioned in my previous message but it’s not working.

It should be something like

{
  "ColumnName": {
    "type": "contains", // Filter operation (e.g., contains, equals, etc.)
    "filter": "value"   // Value to filter by
  }
}

Maybe paste that in the formula instead of Js? And also can you try with Not instead of not