
Announcements
Hi all,
I trying to show the values filtered of SP list on a single label like this:
and that's the code I'm using in the "Text" propriety of the label, but I can't figure out how to make it work.
$"Profile {Char(13)}
{
ForAll(
ShowColumns(
AddColumns(
Filter(tbLista_appDealReview ,Grupo="accesslevel"),
"Text",
$"{ItemTexto} - {ItemDescricao}."
),
"Text"
),Concat(Text,Char(13)))
)
}
"
Thanks, in advanced.
Hello @RaphaelMelo
Let's use "xText" instead of "Text" as we have a function called Text so it's going to confuse PowerApps. This should be the formula. Char(10) is the code for 'next line'.
With({
xFiltered:AddColumns(
Filter(tbLista_appDealReview ,Grupo="accesslevel"),
"xText",
$"{ItemTexto} - {ItemDescricao}."
)
},
"Profile:"
& Char(10) & Char(10)
& Concat(xFiltered," " & xText & Char(10))
)