Hi,
I'm clueless in finding a solution for the following common issue:
I have one table with all sort of financial transactions (e.g. incoming, outgoing, from subcontractors, ...) with different statuses (draft, in progress, done).
I have a second table with projects in it.
I would like to include in the projects table the summary of the related financial transactions:
e.g. for project X,
- show the sum of all incoming transactions with status done;
- show the sum of all incoming transactions with status in progress;
- ...
Do I need to create a seperate relationship for each sum I need or do I need to use a script for this?
I appreciate your help!