Hi. I have created many-to-many relationship as below:
I'd like to create query/ies which will give me table with following columns in result:
Tasks.[Task name] | Tasks.[Money planned] | Resolutions.Number | Resolutions.[Resolutions date] | Changes.[Amount change] | [Money in result]
The problem is the last column which suppose to be:
[Money in result] = Tasks.[Money planned] - "Sum of Changes.[Amount change]" till Resolution.[Resolutions date]"
For example:
I think that one query is not enough, but still can't figure out what that second query should be. Or am I wrong?
Thanks in advance for your help.