Before reading this article, please go through some important article links, mentioned below.
In PowerApps, we can add the Rating control.
Rating control
The user can rate the app by clicking an icon that represents a rating. It contains the 5 star ratings. Rating control can display three types of ratings: <3 is Low rating, =3 an average rating and >3 is High rating.
Follow the steps, mentioned below, to work with Rating control in PowerApps.
Step 1
Log into the PowerApps After downloading PowerApps from Window store, we need Microsoft related organization’s Office 365 ID or (MSDN, Microsoft, Skype, Office 365 etc.) to login with it.
Step 2
Create a New App in Power App After login, we can see the dashboard. Subsequently, we click on the New button.
Step 3
Choose the Blank app. Step 4
Designing the App Now, let's start designing the app. On the left side, we can see the individual screens to add our data. On the right side, we see the list of layouts. On the top, we see the formula bar, where you can see the Properties of the screen which you will select. On the right side, we see the Add DataSource to add the external data source.
Step 5
Drag and Drop the button Control
- Go to the Insert menu followed by controls and drag the Rating tool.
- Drop the tool on the screen.
- Rename the control.
Step 6
Drag and Drop the Text Box Control
- Go to the Insert menu followed by controls and drag Text Box tool.
- Drop the tool on the screen.
- Rename the tool.
- Select the control and add the coding, mentioned below.
Coding
If(Rate.Value > 3, "What did you specially like in this App?", "How we make better this App?")
Step 7
Run the app.
Output 1
Main screen is shown below.
Output 2
Click the Rating and the output is shown below.
Output 3
Click the 5 stars Rating and the output is shown below.
Conclusion
I hope you understood how to add the Rating control in Microsoft PowerApps and how to run it.