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 ?
Glitch_IT_Services
Sep 12, 2019Copper Contributor
Shouldn't it be:
If(Received.Value=false, false, true)
??
I don't think you need the 'Selected' option here and if you inclose the expected value of the toggle in double quotes it means you are expecting the output to be a string while the output of the toggle is actually a boolean. It outputs true or false, not "true" or "false".
Please correct me if I'm wrong.
- WinfredLiuSep 12, 2019Brass ContributorYou are correct.
You can simply set Visible = Received.Value