I have a PowerApps form that pulls fields from a SharePoint list. I would like for the Major Incident question (highlighted in my screenshot) to ONLY appear if the following fields are set to these specific values:
- Type of Request = KBA Request
- What type of KBA request are you submitting = New KBA
- or if this same field = Update KBA
- Is this a standard or emergency request = Emergency
This is the formula that I thought would work in the Visibility Property field for the MI question, but it's not working.
If(DataCardValue61.Selected.Value="KBA Request"||DataCardValue104.Selected.Value="New KBA"||DataCardValue104.Selected.Value="Update KBA"||DataCardValue62.Selected.Value="Emergency", true, false)
TIA for the help!