Lara McGuire 2 Posted August 30 Share Posted August 30 Is it possible to select the value (Empty) in a filter using SetFilter in the configuration block? Link to comment Share on other sites More sharing options...
Solution David Boot-Olazabal Posted September 2 Solution Share Posted September 2 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 1 Link to comment Share on other sites More sharing options...
Lara McGuire 2 Posted September 13 Author Share Posted September 13 Thank you David! I missed seeing that section in the article. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now