Dear community, I am new to the world of power platforms. I have the following problem and just can't seem to solve it. I can do both, but not the two combined.
What I am trying to do:
I have a list in SharePoint and I now search it with PowerApps and the following code:
Search('MY LIST';TextBox1.Value;"Title") // This works
But now I want to include a toggle that only shows me values that have a certain value in the "Flow Variable" column. When turned off, it should show all again.
If(Toggle1.Checked;Filter('MY LIST';'Flow Variable' = "VALUE");'MY LIST') // This works also
But now I want to combine both and I just can't get it to work. How do I combine these two codes?
Here is a Screenshot of the App:
As always I am incredibly grateful for your support
Solved! Go to Solution.
Please consider changing your Formula to the following:
Search(
Filter('MY LIST';
!Toggle1.Checked || (Toggle1.Checked && 'Flow Variable' = "VALUE")
);
TextBox1.Value;
"Title"
)
I hope this is helpful for you.
Please consider changing your Formula to the following:
Search(
Filter('MY LIST';
!Toggle1.Checked || (Toggle1.Checked && 'Flow Variable' = "VALUE")
);
TextBox1.Value;
"Title"
)
I hope this is helpful for you.
Search() is not a delegatable function for SharePoint lists and if your list exceeds the maximum number of records allowable in Advanced Settings, not all of the records will be returned. Also, ! will cause a delegation error. To ensure that you have a functioning formula that will work on larger lists you may need to modify @RandyHayes 's formula. If your list exceeds 2000 records, then this formula will work without delegation errors
With(
{
wmylist: If(
Toggle1.Checked,
Filter(
'MY LIST;
'Flow Variable' = "VALUE"
);
'MY LIST'
};
Filter(
wmylist;
StartsWith(
Title;
TextInput2.Text
)
)
)
Randy you are my hero! Thank you! ❤
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 |
---|---|
203 | |
47 | |
43 | |
40 | |
36 |
User | Count |
---|---|
289 | |
81 | |
81 | |
79 | |
71 |