Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
joshua1990
Post Prodigy
Post Prodigy

Fiscal Month Running Total

I would like to get the running total for the selected fiscal month on a daily level.

This is the measure I have built so far:

 

Running Total = 
VAR RunningTotal =
    CALCULATE (
        [Sales],
        FILTER (
            ALL ( 'Fiscal Calendar' ),
            'Fiscal Calendar'[Fiscal Year] = VALUES ( 'Fiscal Calendar'[Fiscal Year] )
                && 'Fiscal Calendar'[Fiscal Month Num] = VALUES ( 'Fiscal Calendar'[Fiscal Month Num] )
                && 'Fiscal Calendar'[Date] <= TODAY()
        )
    )
RETURN
    RunningTotal

 

 

Unfortunately, this measures shows me in a matrix with dates as rows the running total for every day. 

DateSalesRunning Total
02.08.2021150000150000
03.08.20210150000
04.08.20210150000

 

Why is that so? I have a filter on "TODAY". What have I missed?

2 REPLIES 2
Anonymous
Not applicable

Try using ALLSELECTED instead of ALL.  

Nope, that makes no changes

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors