Goodmorning,
Thank you in advance for the help
I'm working with a Gallery and I need multiple filters on it,
I managed to make everything without delegation warning but I have a doubt
This is the code:
Filter(Opened_Files;
Autore in Security.Title;
Or(IsBlank(CB_Sito.Selected); //handle no selected values to give back every item
IsEmpty(CB_Sito.Selected);
Sito=CB_Sito.Selected.Value);
StartsWith(Nome;TI_SearchDoc.Text);
Or(IsBlank(CB_Rep.Selected); //handle no selected values to give back every item
IsEmpty(CB_Rep.Selected);
Reparto=CB_Rep.Selected.Value)
)
There is a delegation warning using the "in" operator in the second line
The question is:
If the table "Security.title" will never exceed the 500 items, will it be okay for the table "Opened_Files" if there will be over 2k items? I mean, which one has to be less then 500/2k items? The first? The second? Or both?
If both needs to be under the limit, is there any way to bypass it and make it to be without delegation warning?
Another quesiton is:
I need another field to check with the in with the same table,
Thank you again
-Marian