Im trying to filter my Event list in Gallery by GroupBy and TextSearchBox, I wonder how I could combine these two function to work on my gallery.
GroupBy is working perfectly alone
GroupBy(EVENT_LIST,"Event_Start_Date","Booking_Post_As","Status_Abbrv","Account")
Filter is working as well alone
Filter(EVENT_LIST, TextSearchBox1.Text = Event_Start_Date)
Event_Start_date = is converted date to text column.
What I'm trying to archive is to only show the selected date.
Solved! Go to Solution.
Have you try:
GroupBy(Filter(EVENT_LIST, TextSearchBox1.Text = Event_Start_Date),"Event_Start_Date","Booking_Post_As","Status_Abbrv","Account","GroupByResult")
Have you try:
GroupBy(Filter(EVENT_LIST, TextSearchBox1.Text = Event_Start_Date),"Event_Start_Date","Booking_Post_As","Status_Abbrv","Account","GroupByResult")
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
201 | |
69 | |
51 | |
49 | |
20 |
User | Count |
---|---|
261 | |
122 | |
85 | |
79 | |
72 |