Friends,
Yes, I have read all of the delegation documentation. However, that does not always provide enough to know how to use all of the tricks to make something delegable. There are a lot of creative folk out there that have some great ideas.
Actually, I have had good luck eliminating most of my delegation problems. This one remains, and its a really important one. It is in our main search app that must be completely clean. Here is my current statement:
FirstN(Filter(SortByColumns(Filter(Master_Drawing_List,StartsWith(MD_PartNumber,TextInput1_28.Text)),Dropdown2_8.Selected.Value,FlipSortDirection),MD_IsActive=!Checkbox1_4.Value And TextInput1_30.Text in Title And TextInput1_29.Text in MD_Project),100)
This is a multi text-box search statement. There may be searchable text in one or all of the text boxes. It works fine with the MD_PartNumber search, because its the inner filter, and is a delegable statement. However, it is when I am not searching for MD_PartNumber, but other criteria that I get in trouble, because those are affected by delegation issues.
I might need to have multiple statements, given which text-box is used to search. I get that. But, it would be nice to have some other options that would not leave me trying to find all of the combinations of text-box usages to get every possibility to work correctly.
You help would be GREATLY appreciated!