Ok, I'm having a mindblank and can't get past this formulaic hurdle 😞
I have a gallery with 3x filter variables, which must work concurrently.
In each of the filters, I want there to be a "show/select all" option. I'd hoped to invoke the mighty * wildcard, but alas, no love in Power Apps.
My current formula is not having the desired outcome.
SortByColumns(Filter(SteelPulseR4,code = Code_Input.Text || Code_Input.Text = "<All>" && Quarter = Quarter_Input.Text || Quarter_Input.Text = "<All>" && Game = Dropdown1.SelectedText.Value),"start",Ascending)
SteelPulseR4 = datasource
code = gallery title
Code_Input = filter 1
Quarter = gallery subtitle
Quarter_Input = filter 2
Game = Gallery field 3
DropdownSelectedText.Value = filter 3
Help?
Solved! Go to Solution.
Hi @DessiBroughton ,]
You need to bracket and/or combinations - do you want this
SortByColumns(
Filter(
SteelPulseR4,
(
code = Code_Input.Text ||
Code_Input.Text = "<All>"
) &&
(
Quarter = Quarter_Input.Text ||
Quarter_Input.Text = "<All>"
) &&
Game = Dropdown1.SelectedText.Value
),
"start",
Ascending
)
or this
SortByColumns(
Filter(
SteelPulseR4,
code = Code_Input.Text ||
(
Code_Input.Text = "<All>" &&
Quarter = Quarter_Input.Text
) ||
( Quarter_Input.Text = "<All>" &&
Game = Dropdown1.SelectedText.Value
)
),
"start",
Ascending
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @DessiBroughton ,]
You need to bracket and/or combinations - do you want this
SortByColumns(
Filter(
SteelPulseR4,
(
code = Code_Input.Text ||
Code_Input.Text = "<All>"
) &&
(
Quarter = Quarter_Input.Text ||
Quarter_Input.Text = "<All>"
) &&
Game = Dropdown1.SelectedText.Value
),
"start",
Ascending
)
or this
SortByColumns(
Filter(
SteelPulseR4,
code = Code_Input.Text ||
(
Code_Input.Text = "<All>" &&
Quarter = Quarter_Input.Text
) ||
( Quarter_Input.Text = "<All>" &&
Game = Dropdown1.SelectedText.Value
)
),
"start",
Ascending
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
You're a legend! Brackets, of course!
Thanks Mr Warren Belz!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
192 | |
45 | |
45 | |
38 | |
36 |
User | Count |
---|---|
261 | |
83 | |
81 | |
69 | |
69 |