Hi Everyone,
I have a SharePoint list with a column as below.
SharePoint list name: ListA
Column name: Qty
I have values in the column Qty as 10; 20; 30; 40 ;50
How can create a power apps pie chart from the sharepoint list and the choice column?
I also want to use formula to create percentage in the pie chart. Can you please help this case?
I'm using below code but I don't know how to show percentage in the chart.
AddColumns( AddColumns( GroupBy( AddColumns( ShowColumns( 'ListA', Qty ), QtyValues, Qty.Value ), QtyNames, Grp_Qty ), NumberOfValues, CountRows(ThisRecord.Grp_Qty) ), LabelName, Concatenate( QtyNames, " (",NumberOfValues, ")" ) )
Many thanks.
ROSE