2
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?

Microsoft Power AutomateAdvent Calendar 2024

Day 7

Power AutomateでSharePointリストの選択肢列からnullをフィルターする時の注意点

Posted at

やりたいこと

以下のSharePointリストで、選択肢列「製品別」がnullとなっている「AirPods Pro2」という製品名の項目を抽出したい。

image.png

実装方法

結論、ColumnName eq nullでフィルタークエリを直接記述します。

また、日本語の列名で作成したので、列の内部名は_Xで開始する列名になっています。
この場合は、OData_を先頭に付与して、OData__x88fd__x54c1__x5225_という列名にします。

NULL-Filter.png

注意点

動的なコンテンツから「null」をセットした状態で、フローを実行するとエラーになります。ODataフィルタークエリを記述する際に、「true」や「false」を動的なコンテンツからセットする癖があったので少しハマってしまいました。

NULL-Filter-Contents.png

NULL-Filter-Contents-Error.png

2
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
2
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?