Hello,
Is it possible to mark items in a list using a "favorite" icon such as a star, and then toggle that star on and off? It would also be nice to filter by favorites. I tried using the Rating control, but once you click a star (even if you set it to show only one) you cannot reset the star to zero. I am thinking you would need some sort of palette swap or color fill control toggle to switch between "starred" and "unstarred". Or maybe the solution is a checkbox, except I would liek a star icon instead of a checkbox.
Thanks.
Solved! Go to Solution.
Hi @RobRoy,
Thank you for posting a screenshot. Here's some things to check:
Patch(Events,First(Filter(Events,EventFavorite=ThisItem.EventFavorite)), {EventFavorite: If(ThisItem.EventFavorite=true,false,true) } )The part in red above is problematic because it does not point to a unique record. If it is kept this way, the Star will set the first record in the datasource that is the same as the selected record from true to false or false to true.
First(Filter(Events,ColumnWithUniqueValues=ThisItem.ColumnWithUniqueValues))
Try that and let me know how it goes.
Hi RobRoy,
It might be possible to mark items in a list using a "favorite" icon such as a star, and then use a Toggle control to control the Star On/Off.
I create a Yes/No column and named it as “Favorite” in a SharePoint list. Then create a connection from PowerApps to this list.
I configure the app looks like below:
>Add a Toggle icon.
>Add a Star icon. Set its Visible property as: If(Toggle1.Value=true,true,false). When the Toggle is on, the Star will be appear, when the Toggle is Off, the Star will be disappear.
>Add a Text input control.
>Add a button, set its OnSelect property as: Patch(AskForLeave,Defaults(DataSource),{Title:TextInput1.Text,Favorite:Toggle1.Value})
>When I click the button, I can write the new item to the list with the Favorite(Yes/No).
Hope this can be a reference for you.
Best regards,
Mabel Mao
Yes, this can be done, but it requires some setup.
I do something similar with a star that makes a record a "favorite." My favorites are used to Sort, not Filter, but it's the same kind of idea. See my green star:
https://drive.google.com/open?id=0B0iHNZhZKR6YX0N3NklFbHlUVUU
My favorites are written back to the datasource as a column, but you can use a temporary collection to identify favorites too.
Method 1: Your datasource has a column called "favorite" which is true/false for each record
Gallery1.Items: datasource
Patch(datasource,First(Filter(datasource,RecordId=ThisItem.RecordId)), {favorite: If(ThisItem.favorite=true,false,true) } )This means, "Change the favorite column of the record to false if it is true, and true if it is false." My Patch formula is based on CDS entity where RecordId is used to uniquely identify records."
If(ThisItem.favorite=true, RGBA(color of your choice), RGBA(0,0,0,0) )
Example: If(ThisItem.favorite=true, None, Solid )This means, "Show a solid border if the record is not a favorite. Show no border if the record is a favorite."
Add CheckBox1 to the screen. Set CheckBox1.Text to: "Show only favorites" or something descriptive Edit Gallery1.Items to: Filter(datasource, If(CheckBox1.Value, favorite=true, true ) )This means, "If you checked CheckBox1 to only show the favorites, then Gallery1 will only show records where the favorite column is true. Otherwise, Gallery1 will show all records."
Method 2: You prefer to use a temporary collection to identify which ones are favorites and do not need it written back to the datasource
Gallery1.Items: datasource
If(ThisItem.RecordId exactin favorites.RecordId, Remove(favorites,ThisItem), Collect(favorites,ThisItem) )This means, "If the record is already in the favorites collection, remove it; otherwise, add it to the collection." I use RecordId as a unique identifier for the record. You could presumably use the condition "ThisItem in favorites" but it might not return the exact results you are looking for.
If(ThisItem.RecordId exactin favorites.RecordId, RGBA(color of your choice), RGBA(0,0,0,0) )
Example: If(ThisItem.RecordId exactin favorites.RecordId, None, Solid )This means, "Show a solid border if the record is not a favorite. Show no border if the record is a favorite."
Add CheckBox1 to the screen. Set CheckBox1.Text to: "Show only favorites" or something descriptive Edit Gallery1.Items to: Filter(datasource, If(CheckBox1.Value, RecordId exactin favorites.RecordId, true ) )This means, "If you checked CheckBox1 to only show the favorites, then Gallery1 will only show records where the record presides in the favorites Collection. Otherwise, Gallery1 will show all records."
Clear(favorites)
The next advanced step is to be able to Filter Gallery1 based on a Star Rating. You'll need to tinker with Reset properties to make it work.
Thank you for your responses. I tried Method #1 since I want the state to be written back to the record and saved. I followed your instructions and what I currently see happening is that no stars are showing at first. If I click where the star is I see the hollow version of my star. If I click a different record the current hollow star disappears and a new one appears for the different record. What I want to see are hollow stars for all records, and then clicking each star fills it in and saves it as a favorite in the record. Clicking the filled star should return it to a hollow state. In the attached image, EventFavorite is the yes/no column in my SharePoint list (Events).
Thanks.
Hi @RobRoy,
Thank you for posting a screenshot. Here's some things to check:
Patch(Events,First(Filter(Events,EventFavorite=ThisItem.EventFavorite)), {EventFavorite: If(ThisItem.EventFavorite=true,false,true) } )The part in red above is problematic because it does not point to a unique record. If it is kept this way, the Star will set the first record in the datasource that is the same as the selected record from true to false or false to true.
First(Filter(Events,ColumnWithUniqueValues=ThisItem.ColumnWithUniqueValues))
Try that and let me know how it goes.
Ah! That worked, thank you. Now I have a system for marking each item in a record as a favorite, and it writes back to the table. I am having trouble with the Filter part, as my Gallery Items field already has the default Filter applied that comes with he initial ap setup (BrowseGallery1) How can I add on a second filter to the same Items box?
SortByColumns(Filter(Events, TextSearchBox1.Text in EventDate), "EventDate", If(SortDescending1, Ascending, Descending))
I tried using operators (And, Or) but I may have the order wrong.
Thanks.
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.
Thank you again, that worked. Learning the proper syntax is so important to understanding how these expressions work together. Here is the working code:
SortByColumns(Filter(Events, TextSearchBox1.Text in EventDate && If(Checkbox1.Value,EventFavorite=true,true)), "EventDate", If(SortDescending1, Ascending, Descending))
@mr-dang I want to multiple user in my organization to click favourite mark (or remove) if they like that item (as favourite mark business app)
Hello mr-dang,
To continue on this question, what if I want to display everything that is a favorite from a list, by filtering after email?
Say, and enduser is using the gallery, marking as a favorite, and wanted to display all of his/her favorite items in the gallery?
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages