Hi everyone,
Hope you all are doing well, I need some assistance with PowerApps specifically with charts. I have a list that I want to create a chart based on 2 columns. one column is called territory (North, South, West, and East) And I want those options to be on a dropdown, so when a territory is chosen the chart shows the issue categories from the other column. I tried and it comes back with all answers per territory instead of grouping them into the 5 categories that they are. For example, if I select North, I wanted to come back on the chart with issue1=# issue2=# issue3=#, etc. I searched around the site and could find anything that will help me add the answers per issue and present a column on the chart. So far, I tried the following,
Sort(Filter(CETroubleshooting_tracker,Territory = Dropdown5.Selected.Result),Category)
for the chart and
Distinct(CETroubleshooting_tracker, Territory) for the dropdown (this one is working fine)