With(
{
wList: SortByColumns(
Filter(
DATABASE,
(aDropBox_2.SelectedText.Value = Blank() || Market = aDropBox_2.SelectedText.Value) && (bDropBox_2.SelectedText.Value = Blank() || Region = bDropBox_2.SelectedText.Value) && SupportDate >= StartDateNew_1.SelectedDate && SupportDate <= EndDateNew_1.SelectedDate),
"SupportDate",
SortOrder.Descending,
"Title",
SortOrder.Ascending
)
},
If(
CountRows(wList),
Filter(
wList,
TextSearchBox1_2.Text in Title || TextSearchBox1_2.Text in UserName || TextSearchBox1_2.Text in SiteName || TextSearchBox1_2.Text in SupportMethod),
wList
)
)
The requested operation is invalid.
Server Response: DATABASE failed: The attempted operation is prohibited because it exceeds the list view threshold.
If(
CountRows(wList), //is what ??
Filter(
wList,
TextSearchBox1_2.Text in Title || TextSearchBox1_2.Text in UserName ||
TextSearchBox1_2.Text in SiteName || TextSearchBox1_2.Text in SupportMethod
),
wList //if not what ??
)
(aDropBox_2.SelectedText.Value = Blank() || Market = aDropBox_2.SelectedText.Value)
,
"SupportDate",
SortOrder.Descending,
"Title",
SortOrder.Ascending
)
},
If(
CountRows(wList),
Filter(
wList,
TextSearchBox1_2.Text in Title || TextSearchBox1_2.Text in UserName || TextSearchBox1_2.Text in SiteName || TextSearchBox1_2.Text in SupportMethod),
wList
)
)
Stay up to date on forum activity by subscribing.