I've been seeing that when I have "Enable formula bar result view" set to on. I sometimes see the wrong value and what makes it worse is that wrong value is used in the production app. The following is the most obvious example. The expression evaluates to true even if I put the Not operater on it. To fix it, I had to run off the "Enable formula bar result view" setting. This is fustrating since I was running this in my OnStart function and really had no means to troublehoot it and thought it was due to screen navigation errors
PowerApps 3.19081.26
code to repro:
Button.OnSelect =
Set (_User, First(Office365Users.SearchUser({searchTerm:"xxx"})));
If (Not(_User.Department exactin Budgets.Department),
UpdateContext({_temp: true})
,
UpdateContext({_temp: false})
)
I know this is a preview feature but a coding aid should not be breaking the application.
I am curious if anyone else is seeing this. It seems that someone saw some other inconsistent behaviour https://powerusers.microsoft.com/t5/Creating-Apps/BUG-App-ActiveScreen-Width-Height-Orientation-and-Size-are-Blank/td-p/314817 with this setting.