I have a data table that works perfectly with the following:
Sort(Filter(Projects,StartsWith(StateProject,drpStateList_1.SelectedText.Value),Status1="Active"),ProjectName)
I want to add a blank row at the top of the list.
So I added the following:
Ungroup(
Table(
{WFPOOptions: Table(
{State: Blank()},
{ProjectID_static: Blank()},
{ProjectName: Blank()})},
{WFPOOptions: Sort(Filter(Projects,StartsWith(StateProject,drpStateList_1.SelectedText.Value),Status1="Active"),ProjectName)}),
"WFPOOptions")
)
This doesn't work at all. No data is presented.
The first column is a dropdown in the SharePoint List. Could that be a problem?