I have an app that is working properly using a Sharepoint List. I have created a Dataverse table for it because it's growing too large for the app. I've swapped the Data connections but now the BrowseGallery does not populate properly and the formula is throwing errors as I'm trying to substitute the new table for the old List.
Here is the formula that works properly using the Sharepoint List:
SortByColumns(
If(
showComplete=true,
Filter(
[@'Brightspeed Fiber OFS Validation'],
StartsWith(
olt_clli,
TextSearchBox1.Text
)
),
Filter(
[@'Brightspeed Fiber OFS Validation'],
StartsWith(
olt_clli,
TextSearchBox1.Text
) && 'OLT Port Status'.Value=Blank()
)
),
"Title",
If(
SortDescending1,
SortOrder.Ascending,
SortOrder.Descending
)
)
Can someone assist me with what needs to be changed to support the Dataverse table? Simply substituting the names is not working....