I have the following IF statement:
If(CalEqipView, TogCalDue.Value, If(UploadView, TempUpper, TxtUpper.Text))
Where CalEqipView is false, UploadView is false, TempUpper is a string and TogCalDue is a toggle component.
My understand is that it should evaluate as the string in TxtUpper.Text but i'm getting the result 'false'.
It turns out powerapps is evaluating the CalEqipView's true statement as another IF, as when I use the following:
If(CalEqipView, If(TogCalDue.Value, "true", "false"), If(UploadView, TempUpper, TxtUpper.Text))
I get the desired result.
Is it me or is there a bug in powerapps?
I'm using Authoring version: 3.24051.23