LoginSignup
0
0

More than 1 year has passed since last update.

PowerApps Collect利用時の空が混ざると結果がすべて空になる事象の解決

Posted at

PowerApps でCollectした結果が空になる

ForAll(
  openList
  Collect(
     summaryList,
     targetField
  )
)

このopenListtargetFeldが空のものが一つでもあるとうまく収集できません・・・。

解決策

以下のように変更することで、空を解決したデータ収集が可能になります。

ForAll(
  openList
  Collect(
     summaryList,
     If(IsEmpty(targetField), 代替となるデータ, targetField)
  )
)
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