如何在 Powerapps 中的 select 画廊项目之后在导航屏幕中显示特定项目?

How do I show the specific items in the navigated screen after on select gallery item in Powerapps?

示例数据:

下面是垂直图库图片:

垂直图库中 "Office" 项 select 编辑后的样子:

当在 select 办公室画廊项目上时,我只想显示楼层 1、buildingID 1 和区域描述为 Office 的区域描述。

您可以通过在第一个画廊的箭头图标的 OnSelect 属性 中创建一个集合来实现。这可以通过使用以下公式来实现。

ClearCollect(
TempCollection,
Filter(
    Datasource,
    areaName = ThisItem.areaName
) )

然后您可以将 TempCollection 设置为第二个图库的项目属性