Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Powerapps 中,如何从单选按钮过滤画廊
Gallery 从名为“Category”的数据源中提取数据
单选按钮称为“MyRadioBtn”图库称为“Productcat”带有性别的字幕称为“Subtitle1”
当用户从单选按钮中选择“男性”或“女性”时,我试图让画廊在男性和女性项目之间进行过滤,但我似乎无法正确使用语法,到目前为止我发现的所有示例似乎都是与我正在尝试做的不同。
请尝试 ProductCat.Items = Filter(Category, MyRadioButton.Selected.Value = GenderFieldTitle)
GenderFieldTitle 是数据源中性别的标题。(那是你的 Subtitle1)。
希望这可以帮助。