Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello!
I would appreciate if you could help me or give some any help.
Sales Amount RT Year =
VAR FirstVisibleDate = MIN ( 'Date'[Date] )
VAR LastVisibleDate = MAX ( 'Date'[Date] )
VAR LastDateWithSales = CALCULATE ( MAX ( 'Sales'[Order Date] ), REMOVEFILTERS () )
VAR Result =
IF (
FirstVisibleDate <= LastDateWithSales,
CALCULATE (
[Sales Amount],
'Date'[Date] <= LastVisibleDate,
VALUES ('Date'[Calendar Year] )))
RETURN
Result
But when i filter by month, the running total is not correct.
Thank you!
Solved! Go to Solution.
@Anonymous
pls try this
Measure =
VAR _min=CALCULATE(min('date'[Date]),ALLSELECTED('date'))
VAR _date=max('date'[Date])
VAR _min2=date(year(_date),month(_min),1)
return CALCULATE(SUM('Table'[value]),FILTER(all('Table'),'Table'[date]>=date(year(_date),month(_min),1)&&'Table'[date]<=_date))
pls see the attachment below
Proud to be a Super User!
@Anonymous
do you want to keep the RT value?
Measure =
VAR _date=max('date'[Date])
return CALCULATE(SUM('Table'[value]),FILTER(all('Table'),'Table'[date]>=date(year(_date),1,1)&&'Table'[date]<=_date))
pls see the attachment below
Proud to be a Super User!
Hi, @ryan_mayu
Thanks for the help! it gives me another ideas to solve other future situations, but didn't help me in that one.
it has to be similar to that one ( i know its kinda tricky but i want to solve this scenario just for fun 😉 )
@Anonymous
pls try this
Measure =
VAR _min=CALCULATE(min('date'[Date]),ALLSELECTED('date'))
VAR _date=max('date'[Date])
VAR _min2=date(year(_date),month(_min),1)
return CALCULATE(SUM('Table'[value]),FILTER(all('Table'),'Table'[date]>=date(year(_date),month(_min),1)&&'Table'[date]<=_date))
pls see the attachment below
Proud to be a Super User!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 25 | |
| 25 | |
| 23 | |
| 15 |
| User | Count |
|---|---|
| 45 | |
| 32 | |
| 18 | |
| 16 | |
| 16 |