I have a power app that is one screen and as you click the next button it pulls up different questions. I also have a radio button question that I am wanting to only show if the loccurrentpage is 4 or the loccurrentpage is 4 and the radio is selected "no"
How would I write that statement in the visible field? The text below is what I am using in other areas of my form but there is no OR statement.
If ('Property Damage Radio_1'.Selected.Value="Yes" && locCurrentPage="Page 4",true, false)
So I am wanting it to hide once the user has selected Yes, so that other text can populate on the screen.