If checkbox is checked show additional fields

Hello, I'm new in retool and need a little bit of help. I have a checkbox and if it's checked I would like additional fields to appear; however, I'm able to hide the fields if the checkbox is checked, how do I reverse this?
End result:
If "Use Multipliers" is selected would like "Save multiplier price to this group" checkbox appear.



By default the checkbox is set to false.
So, what you can do for all fields you want to display when it is true/checked, is add the following in the Hidden field within Inspect panel like the following {{yourcheckBox.value == false}} Since the checkbox is false, this means Hidden is set to true.
Screen Shot 2022-08-09 at 12.59.10 PM

1 Like

Now I see what I was missing, thank you!