
I am not hopeful on this, after having read: <a href="https://app.roll20.net/forum/post/6721978/slug%7D" rel="nofollow">https://app.roll20.net/forum/post/6721978/slug%7D</a> However, I wonder if a working solution has ever been found? Right now, I have parts of a page that are hidden when a box is checked or you are on a different tab. That is a single condition for hiding something and it works well. What I am wondering is if there is a way to use two conditions. The goal is this: You have a list of abilities. It is long and not a repeatable because we do not want people adding to it. Rather than have it in the way all the time, it may be hidden. However, what if you want to un-hide the overall list but not see anything you are unranked in? This would make for two conditions. 1# the hide/un checkbox being unchecked, which is easy. #2 the value of a skill being >0. I tried some things with range and a hidden input set to the value of the attr_, but it did not seem to make any difference. The min/max in the hidden input did not lock the number input, so I could get an out of range value in the CSS, which was what I tried using as part of triggering the CSS change from display: inline; to none. This did not work. I saw this: <a href="https://app.roll20.net/forum/post/5580043/hide-slash-show-divs-based-on-number-field" rel="nofollow">https://app.roll20.net/forum/post/5580043/hide-slash-show-divs-based-on-number-field</a> However, this would make me make a show/hide value for each ability in the list and then use sheetworker to link it to the value, which I would like to avoid. I would much prefer reusing the value and trigger on 0 or not(0). Still, it could solve what is failing in the other post I found. It just seems like a load of extra attr_ for making things a little nicer looking.