Hello Everyone,
I want to sort my gallery descending according to the concatenated expression below. If the concatenate DisplayNames are 5 or more than sort the gallery, so that the DisplayNames that is 5 or more is moved to the button and the less than 5 is on top of the gallery
Concat( Filter( SPList, Column1 = ThisItem.Column1 && Column2 = ThisItem.Column2 && Column3.Value = ThisItem.Column3.Value && Date = Text(ThisItem.Date,"dd-mmm-yyyy")), If( IsBlank(Column4) || Len(Trim(Column4)) = 0, "", Column4 & ";" ) )
Current Gallery Expression
Filter(SPList,If(varTabSelected2 = "All",true,Column3.Value=varTabSelected2))
I hope the information I provided is helpful.