0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Power Apps】SharePointリストの参照列に対してキーワード検索する

Posted at

データソースに対してキーワード検索を行う関数は「Search()」ですが、この関数はSharePointリストの参照列に対しては実行できません。(ゴミ)
出来ないくせに「Filter()」関数と「in」を組み合わせることで同じような動きを再現できます。

Filter(
   TestCollection,
   "example" in 'テストリスト:参照列1'.Value
)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?