zoukankan      html  css  js  c++  java
  • Insert new row in collect with powerapps canvas

    Insert A New Row Into A Collection

    Input collection: myScores31a

    FullName Age  TestScore
    David Jones 32 78
    Anne Lisbon 45 92
    Penlope Parra 26 56


    Input record: myScores31b

    FullName Age  TestScore
    Harold Reimer 50 65


    Output collection: mySolution31

    FullName Age  TestScore
    David Jones 32 78
    Anne Lisbon 45 92
    Penlope Parra 26 56
    Harold Reimer 50 65


    Solution code:

    //Create a collection
    ClearCollect(myScores31a,
    {FullName:"David Jones", Age: 32, TestScore: 78},
    {FullName:"Anne Lisbon", Age: 45, TestScore: 92},
    {FullName:"Penelope Parra", Age: 26, TestScore: 56}
    );
    
    //Create a Row
    Set(
        myScores31b,
        {FullName:"Harold Reimer", Age: 50, TestScore: 65}
    );
    
    //Insert a new row into collection code
    ClearCollect(mySolution31,myScores31a);
    Collect(mySolution31,myScores31b);
    
    //Alternate solution
    ClearCollect(mySolution31,myScores31a);
    Patch(
        mySolution31,
        Defaults(mySolution31),
        {FullName:"Harold Reimer", Age: 50, TestScore: 65}
    )
  • 相关阅读:
    【Rust】无关联类型
    【Rust】trait克隆
    【Rust】trait动态返回
    【Rust】trait迭代器
    【Rust】特质trait
    【Rust】运算符重载
    【Rust】trait超集
    【Rust】trait删除
    【Rust】trait实现
    wpf之数据模板 安静点
  • 原文地址:https://www.cnblogs.com/lingdanglfw/p/14906033.html
Copyright © 2011-2022 走看看