我有一个基于MS PowerApps的应用程序连接在PowerAutomate流上。
我的问题是:如何通过使用(或不使用)公式ShowColumns显示2个以上的集合来重写此代码?
我必须展示一个名为";collection_output";以及";collection_form";。
TKS!
我想在主代码中包括什么:
ShowColumns(collection_output,"ID_SUB_FORM","LOC_SITE")),
主要代码:
Set(
var_FileLink,
'ExporttoExcel-Version2'.Run(
JSON(
ShowColumns(
collection_form,
"FORM_QUESTION_ID",
"FORM_QUESTION",
"ANSWER_RADIO",
"ANSWER_TEXT"
),
IncludeBinaryData
)
).filelink
);
将两个集合合并为一个。然后将新加入的集合传递给流。
ClearCollect(collection_formAndOutput, collection_form, collection_output);
Set(
var_FileLink,
'ExporttoExcel-Version2'.Run(
JSON(
ShowColumns(
collection_formAndOutput,
"FORM_QUESTION_ID",
"FORM_QUESTION",
"ANSWER_RADIO",
"ANSWER_TEXT",
"ID_SUB_FORM",
"LOC_SITE"
),
IncludeBinaryData
)
).filelink
);