No, this is not possible. Tables (like almost everything in Power Apps) are strongly typed, meaning that it has a well-defined schema that can be referenced within formulas. Since the values from the collection are not known ahead of time, then you would not be able to reference them in the formulas.
You may be able to use something like the GroupBy function to create a collection similar to the one below:
发布评论
评论(2)
不,这是不可能的。表(如电源应用程序中的几乎所有内容)都是强烈键入的,这意味着它具有明确的模式,可以在公式中引用。由于收集的值未提前知道,因此您将无法在公式中引用它们。
您也许可以使用 groupby函数< /a>创建一个类似于下面的集合:
No, this is not possible. Tables (like almost everything in Power Apps) are strongly typed, meaning that it has a well-defined schema that can be referenced within formulas. Since the values from the collection are not known ahead of time, then you would not be able to reference them in the formulas.
You may be able to use something like the GroupBy function to create a collection similar to the one below:
(仅因为我已经从以前的答案中嘲笑了数据:))
ui:嵌套画廊
powerfx:正如@carlosfigueira所提到的
那样
coldata
是原始帖子集中显示的数据galparent
togroupby(coldata,“ principaldisplayname”,“ group”)
galchild /code> to
thisItem.group
Visual>
(Only because I had the data already mocked from a previous answer :) )
UI: Nested Gallery
PowerFX: Exactly as @carlosfigueira mentioned
Assuming
colData
is the data shown in original postgalParent
toGroupBy(colData, "principalDisplayName", "group")
galChild
toThisItem.group
Visual