Forum Discussion
Henrik Stentebjerg Tobiassen
Mar 09, 2017Copper Contributor
Make field visible depended on other field - Powerapps
Hi, I am trying to make this date recieved field visible if the checkbox is checked and not visible is the checkbox not is checked. Can't really get it to work. Any suggestions ?
Rodney Craigo
Brass Contributor
Hi,
In the OnVisible property of your screen, create a Context Variable and set it's value to false.
UpdateContext({cVisible: false})
Then set the calandar controls Visible property to to the context variable, in this example that would be cVisible
On the check box control set the OnCheck property to update the Context variable
UpdateContext({cVisible: true})
You can reset the context variable in the checkbox OnUnCheck property to reset as well
to get a toggle effect.
UpdateContext({cVisible: false})
Hope this helps.
bprater
Jun 18, 2021Copper Contributor
This is awesome, learnt something today.