I have a table that users choose their item and then it opens a new screen drilling into the details. This works just fine, but then all of the Forms in lower level Screens no longer accept the table.Selected as the item that it is referencing and instead shows "no data"
SortByColumns(
AddColumns(
Filter (
Table,
txt_SearchList.Text in P1Request_ReportName
, ReportStatus in drop_StatusLookup.SelectedItems
,BP_Impact in drop_BPImpact.SelectedItems
),
"SortValue" , Priority.Value
),
"SortValue" , SortOrder.Ascending )
Without the Sort added, the filter works just fine and all the Forms function with Table.Selected. As soon as I add the Sort function it stops working. I am rather confused.