Re: Toggling dependent toggles in PowerApps
@PowerSuiteUser ,
This may not be perfect, but is the best you will do - set the Variable to a Text value OnChecked - on Started Toggle
UpdateContext({varToggle: "Started"})
and on Completed Toggle
UpdateContext({varToggle: "Completed"})
Screen OnVisible
UpdateContext({varToggle: Blank()})
then Default on Started Toggle
If(
varToggle = "Completed",
false,
ThisItem.StartFieldName
)
Default on Completed Toggle
If(
varToggle = "Started",
false,
ThisItem.CompleteFieldName
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps