testBoolean = LookUp(
ToolboxUsers,
email = User().Email
)
testBoolean is a named formula. It is a record from a data source. It has a Boolean value called:
testBoolean.in_ori
The named formula is used in a gallery with the items below
Filter(
ToolboxUsers,
in_ori = testBoolean.in_ori
)
PowerApps recognizes that testBoolean.in_ori is Boolean and it = true (see photo)
testBoolean is a record from the data source ToolboxUsers, so in_ori is found in both and both contain Boolean values. However when the gallery is filtering using testBoolean.in_ori it does not filter properly.
When you change the filtering from:
//THIS
Filter(
ToolboxUsers,
in_ori = testBoolean.in_ori
)
//TO THIS
Filter(
ToolboxUsers,
in_ori = true
)
The gallery does not filter properly using testBoolean.in_ori even though PowerApps recognizes that testBoolean.in_ori is Boolean and it = true


The gallery filters properly with a true
