Hi All,
I have a delegation issue I do not understand as the functions I believe are all delegatable.
below is the value of the items for a gallery.
Sort(Sort(Filter('HSE - Cov_EPC_Obs_tbl','Obs Type'= "EPC" && Report_Month = EPC_Obs_Month_dd.Selected.Result),Date,Descending),'Obs Category',Ascending)
HSE - Cov_EPC_Obs_tbl ---> is a SharePoint online list
Report_Month --------------> is calculated text field equal to Text(Date,"mmm yy") where date is a date in date format.
EPC_Obs_Month_dd --------> is a drop-down located on the same page referencing the Report_Month column of HSE - Cov_EPC_Obs_tbl, its items value is Distinct(Sort('HSE - Cov_EPC_Obs_tbl',Date,Descending),Report_Month)
I would be keen to understand why this is an issue, the exact same structure is working happily on another text field.
An alternate solution would be a better way to generate a drop-down with specific months for the data set and allowing a gallery to return the selected month.