Hello Everyone,
I want to change a text property of a gallery button to Complete if the concatenated text is equal 5 concatenated DisplayNames
I am using the below expression for my Button Text
If(Office365Users.MyProfileV2().displayName in Label45.Text, "In Progress", "Pending")
I am using the below expression for concatenation
Concat( Filter( SPList, Column1 = ThisItem.Column1 && Column2 = ThisItem.Column2 && Column3.Value = ThisItem.Column3.Value ), If( IsBlank(Column4) || Len(Trim(Column4)) = 0, "", Column4 & ";" ) )
I hope the information I provided helps