Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个用户可以输入变量列表的列表字段。
然后,该列表将存储在 SharePoint 中的一个多行变量中,由分隔符分隔。
一个例子是输入:
输出:苹果;香蕉;樱桃。
感谢您的时间。
这完全可以在 PowerApps 中使用 Collection 和 Concat 函数。
OnSelect
Collect(colList, TextInput1.Text); Set(varReset, true); Set(varReset, false); Set(varReset, true);
Reset
varReset
Text
Concat(colList, Value, ";"
从那里,只需将标签Patch或SubmitForm标签放入 Sharepoint 列!
Patch
SubmitForm