1

字符串看起来像:

teststring = "Sunday,Monday"

在此处输入图像描述

当我这样写时,在组合框的 DefaultSelectedItems 中,它可以工作。

如何使用上述测试字符串动态制作这种格式(即使测试字符串更改为其他内容)?

4

1 回答 1

1

下面的代码对我有用:

ClearCollect(collectOutput,RenameColumns(Split(Teststring,","),"Result", "Value"))

collectOutput.Value要访问我刚刚在 DefaultSelectedItems 属性中编写的收集列表

于 2021-11-15T11:06:26.823 回答