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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Running total till date

Hi,

I want help with the running total till date iam getting the total throughout the whole year i have tried every possible solution but has nothing worked.If i get help it would be really appreciated.

FY ends 06/30, FYmon is FY month no.

Actual_MM1 = CALCULATE(CALCULATE(COUNT(FTE[ACTUALDATE]), FTE[activitycodedescription]="Mass Mailing 1"))
YTD= CALCULATE(COUNT(FTE[ACTUALDATE]),FTE[activitycodedescription]="Mass Mailing 1" ,FILTER(ALLSELECTED(FTE),FTE[FYmon]<=MAX(FTE[FYmon]) )2.PNGwhen i select current fiscal year the total should stop till september but it goes till end  of the year .when i select current fiscal year the total should stop till september but it goes till end of the year .
1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Modify your measure using dax below and check if it can meet your requirement:

YTD =
CALCULATE (
    COUNT ( FTE[ACTUALDATE] ),
    FILTER (
        ALLSELECTED ( FTE ),
        FTE[activitycodedescription] = "Mass Mailing 1"
            && FTE[FYmon] <= MAX ( FTE[FYmon] )
    )
)

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

Modify your measure using dax below and check if it can meet your requirement:

YTD =
CALCULATE (
    COUNT ( FTE[ACTUALDATE] ),
    FILTER (
        ALLSELECTED ( FTE ),
        FTE[activitycodedescription] = "Mass Mailing 1"
            && FTE[FYmon] <= MAX ( FTE[FYmon] )
    )
)

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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