Hello,
Would you please help with the following.
There is a statement that works perfectly:
Set(SelectedObjectName, First(Filter('[dbo].[Objects]', ParentObjectId = WorkingParentObjectId)).Name)
Now I need to sort data output before taking the first record. I use SortByColumns function, like this:
Set(SelectedObjectName, First(SortByColumns(Filter('[dbo].[Objects]', ParentObjectId = WorkingParentObjectId), "SortOrder")).Name)
And immediately get "Incompatible type..." error, like below:
I assume that this is because delegation cannot be used and statement cannot be resolved.
Does anybody know work-around?
Thank you!