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}
    )
  • 相关阅读:
    [pycharm]远程调试服务器项目
    [Linux]防火墙关闭与开启
    [Linux]安装pyenv
    [Linux]ubuntu安装基本流程
    [python]html格式转md格式
    [python]目录及文件操作
    [Linux]安装node.js
    Linux基础
    爬虫基础(3)
    爬虫基础(2)
  • 原文地址:https://www.cnblogs.com/lingdanglfw/p/14906033.html
Copyright © 2011-2022 走看看