PowerApps 中是否有可以导出到多行变量的文本输入列表?

Is there a text-input list in PowerApps that can be exported to a mutli-line variable?

我想创建一个列表字段,用户可以输入变量列表。

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

一个例子是输入:

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

感谢您的宝贵时间。

这完全可以使用 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 列!