Hi ,
I have a Gallery with Items Property
Filter(
Top_Risk_Controls,
VarTopITrisknames in Risk_name.Value
)
And a Label Inside the Gallery with following Text Property
If(
IsEmpty(
Filter(
Linked_Risks_Causes_Controls,
VarTopITrisknames = Risk_name.Value && ThisItem.Title = Control.Value
)
),
"0%",
Sum(
Filter(
Linked_Risks_Causes_Controls,
VarTopITrisknames = Risk_name.Value && ThisItem.Title = Control.Value
),
'Cause: Impact'.Value * Potential_impact_cause/100*10000) & "%"
)
I want to Sort gallery based on Label71_1 value,
I tried the following formula to sort the Gallery. But it's not working.
Sort(Filter(
Top_Risk_Controls,
VarTopITrisknames in Risk_name.Value
),Label71_7,SortOrder.Ascending)
The above formula is not working
could anyone please help me to fix the issue