Hi I am having the data in sharepoint like
| Title | ID |
|---|---|
| S1 | 101 |
| S1 | 102 |
| S2 | 103 |
| S3 | 104 |
| S3 | 105 |
Now I have to create a piechart in PowerApps Showing the Percentage of Each title.
So, I am creating a new column using AddCoulmn(GroupBy,"Title", "Grouped"), "Titles", CountRows(Grouped))
Now I want to create another Column with the distinct titles and its percentage with reference to the ID.
How can I do that?