Jump to content

Setting (Empty) in a Date filter column using the configuration block


Lara McGuire 2
Go to solution Solved by David Boot-Olazabal,

Recommended Posts

  • Solution

Hi Lara,

You may want to have a look at this article: 

 

More specifically, the Configuration Statements paragraph.
There are a couple of examples (in the Set Filters part), in which the empty setting is also being discussed.

One of the code examples is about excluding empty values: 

// Uncheck all boxes and exclude empty values:
SetFilter(columnName = "C", operation = RemoveAll, includeEmpty = false);

For your use case, you can try to set the value to true:
 

// Uncheck all boxes and exclude empty values and see if that works:
SetFilter(columnName = "C", operation = RemoveAll, includeEmpty = true);

Kind regards,

David

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...