Griz Posted December 11, 2023 Share Posted December 11, 2023 (edited) In the documentation, it has None is None, produces the result True None not is None, produces the result True <= is this wrong ... should it be None not is None, produces the result False instead of True. What exactly is None? Is it a space " " or "" or Null? When I want to filter, should I use "==" or "Is" or does it make a difference? Edited December 11, 2023 by Griz Add more questions Want to know more? Link to comment Share on other sites More sharing options...
Sara Posted December 13, 2023 Share Posted December 13, 2023 Hello Griz! Thank you for your feedback on documentation, None not is None produces False, there is a typo in it. The None value is meant to be an empty cell. The 'is' and the '==' operators have different functions in formulas: 'is' means equals to: this operator can be used with any attribute type, and it only returns a binary True/False value. == means equals in comparison: it is inserted automatically between the left and right side of the formula. When it is used with nominal attributes containing a None (empty) value, it returns a binary true or false as well While if you are talking about the filtering options in the Data Manager's query panel, consider that the difference between ==, != and is, not is is meaningless if both the compared attributes are nominal or binary due to the None operator properties used in Rulex Platform. I hope this helps! Want to know more? Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.