Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
If you want a running sum only within the month, wouldn't it be easier to use TOTALMTD() function ?
I do not know about the details of your project, but it seems to be the easiest way...
The formula you used is perfect when you need a running sum on all lines, but for monthly running sum the best is to use TOTALMTD or for quarter TOTALQTD...
Let us know if it suits your needs
Let us know
try like:
cum_tot =
CALCULATE (
[sum_trip_cost],
FILTER(
ALL(ff[Trip Date]),
ff[Trip Date] < MAX (ff[Trip Date] )
&& YEAR( ff[Trip Date]) = YEAR( MAX (ff[Trip Date] ))
&& MONTH( ff[Trip Date]) = MONTH( MAX (ff[Trip Date] ))
)
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |