Hi People,
I have a galley with the following code. I need to apply a filter to show only the items with Status "Yes". The Status is a colunm in the Event table. I tried many things, but I'm not getting. I'm getting crazing... It looks so simple, but I'm not finthe way to do that. 😞
SortByColumns(Filter([@Events], StartsWith(Title, TextSearchBox1.Text)||StartsWith(Organizer, TextSearchBox1.Text)), "EventDate", If(SortDescending1, Descending, Ascending))
Solved! Go to Solution.
I was simply using the values you gave me - by "yes", I assumed this was a text field, however it appears you have a Boolean (true/false yes/no) field. Note - you will get a Delegation warning on this as Boolean fields are not Delegable.
SortByColumns(
Filter(
Events,
Status = true &&
(
StartsWith(
Title,
TextSearchBox1.Text
) ||
StartsWith(
Organizer,
TextSearchBox1.Text
)
)
),
"EventDate",
If(
SortDescending1,
Descending,
Ascending
)
)
How many records are in your list?
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 @RaphaelAlves ,
Something like this
SortByColumns(
Filter(
Events,
Status = "Yes" &&
(
StartsWith(
Title,
TextSearchBox1.Text
) ||
StartsWith(
Organizer,
TextSearchBox1.Text
)
)
),
"EventDate",
If(
SortDescending1,
Descending,
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.
It's returning a invalid argument in the code Status = "Yes"
I was simply using the values you gave me - by "yes", I assumed this was a text field, however it appears you have a Boolean (true/false yes/no) field. Note - you will get a Delegation warning on this as Boolean fields are not Delegable.
SortByColumns(
Filter(
Events,
Status = true &&
(
StartsWith(
Title,
TextSearchBox1.Text
) ||
StartsWith(
Organizer,
TextSearchBox1.Text
)
)
),
"EventDate",
If(
SortDescending1,
Descending,
Ascending
)
)
How many records are in your list?
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 @RaphaelAlves ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
User | Count |
---|---|
158 | |
99 | |
83 | |
77 | |
59 |
User | Count |
---|---|
196 | |
173 | |
103 | |
95 | |
89 |