Forum Discussion
Deleted
Nov 16, 2016Conditionally show fields in PowerApps
Is there any way to conditionally show fields based on the value of another field? So if a user selects Yes in one field then other fields are show, same thing if the user selects NO then differe...
Albert Hockaday
May 08, 2018Copper Contributor
I just started developing in PowerApps and I am trying to make a SharePoint list Yes/No field titled 'CMDBUpdateCompleted' hidden if the value of another Yes/No field title 'CMDBNeeded' is equal 'No" and visible is the CMDB field is equal to "Yes". I cannot get your formula to work for this. Can you point me in the right direction please?
Deleted
Jun 08, 2018you need to add this in your visible field : If(CMDBUpdateCompleted.Value = true;true;false)
This condition shows a content only when your toggle is clicked, you can change the true/false values depending what you need. Hope this helps you !