I am trying to set a criteria for an element:
- If its value is 0, or if it’s empty to begin with (null), do not display.
However, I don’t see the “empty” option - even though I’ve heard that it should be present. Can anyone advise where I can find it?
Critical rate is a number, if it helps. Thank you.
Jici
2
You need to repeat [or]… inventory tooltip’s playeritemsinstanced’s critical rate is empty
Thanks - doesn’t seem to work though - am I missing something out?
Is not empty is “Isn’t empty” 
Remove the is not and search for empty only
1 Like
Thanks! Found it. One follow-up though… it seems that when I set both conditions, both break.
If I set only one and not the other, the one works. Any idea?
Very likely you are using “Or”, while you should be using “And”
1 Like
This works! But I don’t get it… my Critical Rate is a single field - as long as it is not “0 OR empty”, I want it displayed. Why an AND condition?
You want it displayed when
it is NOT (0 OR empty)
Which means you want it displayed when
(it is not zero) AND (it is not empty)
You can read up more on how boolean operators work, over some web articles I suppose.
1 Like
system
Closed
9
This topic was automatically closed after 70 days. New replies are no longer allowed.