PowerAppsにてLabel.Text
にlocVariable
という変数を設定しそれを切り替える方法ですが
今までは
If(locVariable=false,
UpdateContext({locVariable:true}),
UpdateContext({locVariable:false})
)
だったり
Switch(locVariable,
false,UpdateContext(UpdateContext({locVariable:true}),
UpdateContext({locVariable:false})
)
の様に記載していたがNot
を利用して
UpdateContext({locVariable:!locVariable})
で表せる事に今頃気づいた。