Hi
I need help, I have a gallery in which I create buttons based on data from Sharepoint.
It works great for me on one procedure and when I wanted to implement it here and there it doesn't work for me and I don't know where the error could be.
And the only thing that changes there is the column in sharepoint which is defined as Choice

GroupBy(
SortByColumns(
AddColumns(
'Best Practice Ideas',
'New colum',
'Inter-cluster Sharing'.Value
),
"New colum",
SortOrder.Ascending
),
'New colum',
Data
)
Here is an example where it works for me, the data source is the same, only the column in excel changes

GroupBy(
SortByColumns(
AddColumns(
'Best Practice Ideas',
'New colum',
'Sub process'.Value
),
"New colum",
SortOrder.Ascending
),
'New colum',
Data
)
Thanks