Hi @Learnean
The GroupBy function in Power Apps to group your choice column by the model names and then count the number of records in each group. You can then display the result in a gallery or a table.
Assume that your choice column is named Model and it is in a data source named Printers.
Create a collection named ModelCount using this formula:
ClearCollect(
ModelCount,
GroupBy(Printers, "Model", "Group")
)
To count the number of times each model has been chosen, you can add another column to the collection using this formula:
AddColumns(
ModelCount,
"Count",
CountRows(Group)
)
If you have any questions or feedback, please let me know. Have a great day! 😊
-----------------------
PowerYsa Power Platform Enthusiast [LinkedIn] | [Youtube]
I love to share my knowledge and learn from others. If you find my posts helpful, please give them a thumbs up 👍 or mark them as a solution ✔️. You can also check out my [@PowerYSA] for some cool solutions and insights. Feel free to connect with me on any of the platforms above. Cheers! 🍻