I have data about bank transactions. For example, I have two attributes "Posting date" and "Value". I want to see bank balance by each month. Problem is, that if I create measure and then add to graph (by months) I get SUM by each month in graph, but this is not balance.
For example, if data:
- 01.01.2019 (500€)
- 02.01.2019 (100€)
- 24.01.2019 (-50€)
- 25.01.2019 (-200€)
- 04.02.2019 (100€)
- 15.02.2019 (-50€)
- 03.03.2019 (200€)
I need that kind of result:
- January (350€)
- February (400€)
- March (600€)
But I get:
- January (350€)
- February (50€)
- March (200€)