Ok thanks for the info @edwardhorton ! 😊
You could try the following:
(1) Add a Column Chart control to your Power App
(2) Use the following code in the Items property of the ColumnChart
//Group your records and create a column to display the count
AddColumns(
GroupBy(
//Change LISTNAME and COLUMNNAME to the correct names
LISTNAME,
"COLUMNNAME",
"GroupedRecords"
),
"Count",
CountRows(GroupedRecords)
)
(3) (optional since it may be ok already), select the ColumnChart control, go to the property panel on the right and select 'Advanced'
- The Series properties should be set to Count
- Labels property should be set to your column name
Since Column Charts are more complex controls I will add some additional resources to help you get started:
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!