有没有一种方法可以使用多个使用共享点选择的保管箱来过滤数据表

Is there a way to filter datatable using multiple dropbox that uses sharepoint choices

我一直在尝试让这个简单的过滤器在我的 PowerApps 中工作。当添加一个使用 Choice() 的保管箱从我的 SP 调用选项到过滤器公式时,它将显示 "Invalid argument type".

非常感谢任何建议。

ClearCollect(
    cFeedback,
    Filter(
        Feedback,
        dropCompSrch.SelectedText.Value = Company,
        Product = dropProdSrch.Selected.Value))

我只需在列名中添加 .Value 即可实现此功能。下面是函数。

ClearCollect(
cFeedback,
Filter(
    Feedback,
    dropCompSrch.SelectedText.Value = Company,
    Product.Value = dropProdSrch.Selected.Value))