Help

Re: Reference a table

549 0
cancel
Showing results for 
Search instead for 
Did you mean: 
JOSH_KINGSTON
4 - Data Explorer
4 - Data Explorer

I am trying to get a total of one column in a different table to my summary table
So basically I have expenses and income tables and its divided into classes. I want the sum of a specific class to appear in my summary table and do the same thing for the income

2 Replies 2

Hi @JOSH_KINGSTON - you can’t get data into a summary table without either:

  • copying it there
  • linking it
  • looking it up or rolling it up (via a link)

The answer to your problem might be in the structure of the base. I think I understand what you’ve got (although may have it wrong). Can you share your base (or an empty copy of it) so that we can comment further?

JB

AlliAlosa
10 - Mercury
10 - Mercury

I think you could use a conditional rollup. Add a column to both the income and expense tables, then use a formula like…

IF({Class Name} = "Class Name Here", {Amount}, 0)

Then, add two rollup fields on your summary table (one for income and one for expenses) with the formula:

SUM(values)

Note that this requires all the records you want to sum to be linked to the same record in the summary table.

You can read more about conditional rollups here :slightly_smiling_face:

5f73751092c6afb3485d0dfe997b3809227f5002.png

Conditional rollups

By default, a filter applied in one table does not affect a rollup in another table. A rollup field will roll up data from all records in the target linked table, regardless of whether or not those...