Hi @RobRoy,
I personally use && in place of And() and || in place of Or() because I save myself lots of confusing parentheses and commas. Here's an example. I spaced everything out so you can see where "&&" goes in place of And():
SortByColumns(
Filter(
Events,
TextSearchBox1.Text in EventDate &&
(condition 2) &&
(condition 3) &&
(condition 4) etc.
),
"EventDate",
If(SortDescending1, Ascending, Descending)
)
Sometimes you may need to wrap parentheses around each condition when you use && because PowerApps combines the equivalence of one condition to that of another.
If you still want to use And(), it would look something like this:
SortByColumns(
Filter(
Events,
And(
TextSearchBox1.Text in EventDate,
condition2,
condition3,
condition4 etc.
)
),
"EventDate",
If(SortDescending1, Ascending, Descending)
)
Since arguments in And() are separated by a comma, it's not necessary to wrap the conditions with parentheses.