Help

I need to calculate the percent of a group over the total

Topic Labels: Formulas
2969 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Jose_Alberto_Fu
6 - Interface Innovator
6 - Interface Innovator

Hi guys!!

I need to summarize the percent of a group over the total as shown in red in the example.

Any suggestion? Thanks

Captura de pantalla 2021-08-13 a las 20.35.26

2 Replies 2

There isn’t a way for the built-in summary bars to display those percentages, but it can be done using a linked table and a series of rollups.

First make a [Summary] table containing one record for each group in your main table, plus one record labeled “Total”. I don’t know how you’re grouping your data, so I went with generic names for this example:

Screen Shot 2021-08-13 at 8.01.30 PM

Add a link field in the main table that allows you to link to these new records. Link the first record in each group to its appropriate record from the [Summary] table, as well as the “Total” record, then drag-fill from that record across the rest in each group to copy the links.

Screen Shot 2021-08-13 at 8.03.39 PM

In the [Summary] table, add a rollup field named {Record Sum} to tally the total of all incoming linked records. This will give you one summary for each group, plus one that’s the total of everything.

Screen Shot 2021-08-13 at 8.05.04 PM

Screen Shot 2021-08-13 at 8.05.20 PM

Back in your main table, add a {Total} rollup field to bring in the value only from the “Total” record. You’ll use the rollup field conditional settings for this.

Screen Shot 2021-08-13 at 8.06.33 PM

Back in the [Summary] table, add one more rollup field named {Percentage}. The aggregation formula will do two things. First it will use some nested functions to bring that total value back across, then divide the individual record summary by that amount to get that group’s percentage of the total (you’ll need to change the field formatting to “Percentage” and adjust the precision to your liking).

Screen Shot 2021-08-13 at 8.10.24 PM

Screen Shot 2021-08-13 at 8.11.12 PM

It’s not as convenient as having the percentages directly in the main table, but it’s the next best option.

If new records get added to the main table, you’ll need to make sure they have the proper links to the summary table. If an existing record changes groups, you’ll need to manually change the links accordingly. All of this link tweaking could be done through an automation if you’re up for it, but it would require scripting to determine which group record each main record should link to.

It works perfectly. :grinning:

Thanks a lot.

Very smart!