2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PowerApps 変数の曖昧性の除去

Posted at

曖昧性の除去

1.入れ子になったレコード スコープの値にアクセスするには、次のパターンを使用した操作対象のテーブルの名前の @ 演算子を使います。
Table[@FieldName]

2.データ ソース、コレクション、およびコンテキスト変数などのグローバル値にアクセスするには、[@オブジェクト名] のパターンを使用します (テーブルは指定しません)。

サンプル

image.png
image.png

さらに、Value という名前のコンテキスト変数を次の数式を使用して定義します: UpdateContext( {Value: "!"} )

Ungroup(
    ForAll( X,
        ForAll( Y,
            //Yコレクションの値と、Xコレクションの値とローカル変数の値を連結する
            Y[@Value] & Text( X[@Value] ) & [@Value]
            
        )
    ),
    "Value"
)

image.png

参考サイト

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?