I have managed to get the proportions of different organizations to show on a pie chart with the following formula in the items section of the chart:
AddColumns(
AddColumns(
GroupBy(
Ungroup(
Filter('Conflict of interest', 'Record Status'.Value = "Active"),
"NamesoforganizationsIbelongto"
),
"Value",
"Organization"
),
"count",
CountRows(Organization)
),
"Label",
Value & " (" & Text(count) & ")"
)
It produces the following table:
| Label | Organization | Value | count |
| Organization A (1) | [Table] | Organization A | 1 |
| Organization B (1) | [Table] | Organization B | 1 |
| None | [Table] | None | 1 |
I want to calculate and show on the pie chart what the proportion is of the 'count' column where the 'Value' is not "None". In the example above it would be 2/3 or 67% and I want to show this on the chart. Any help is much appreciated!