首页 > 解决方案 > PowerApps 中是否有可以导出到多行变量的文本输入列表?

问题描述

我正在寻找一个用户可以输入变量列表的列表字段。

然后,该列表将存储在 SharePoint 中的一个多行变量中,由分隔符分隔。

一个例子是输入:

输出:苹果;香蕉;樱桃。

感谢您的时间。

标签: powerappspowerapps-formulapowerapps-canvaspowerapps-collection

解决方案


这完全可以在 PowerApps 中使用 Collection 和 Concat 函数。

  • 按钮:
    • OnSelect属性设置为
Collect(colList, TextInput1.Text);
Set(varReset, true);
Set(varReset, false);
Set(varReset, true);
  • 文本框:
    • Reset属性设置为varReset
  • 标签:
    • Text属性设置为Concat(colList, Value, ";"

从那里,只需将标签PatchSubmitForm标签放入 Sharepoint 列!

在此处输入图像描述


推荐阅读