Boolean Not function in Expression Editor

Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
15-09-17 11:46 PM
Please implement a Boolean Not function to the Flag type
for example
Not(False) = True
Not(True) = False
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
15-09-17 11:49 PM
Hi michaell,
As a workaround, you can use this instead, where the first Flag is the Flag you're working on.
(Len(True)-Len(False)) * -1= 0 will return Flag: False
(Len(False)-Len(False)) * -1= 0 will return Flag: True
