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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Archie_ZHANG
Frequent Visitor

Need help - Calculate certain period only

Hi,

I write a measure to calculate monthly leavers of my company. It works ok in line chart, but my question is how to calcualte certain period only with RED BOX MARK, i.e. from 2023/2/1 to 2023/1/31 only. Please help to suggest how to modify the code, thanks!

Archie_ZHANG_0-1707789122686.png

 
leavers_chart =
SUMX (
    DISTINCT ( 'HC EPM'[EE ID] ),
    VAR _id = 'HC EPM'[EE ID]
    VAR _mth = 'Universal'[Current]
    VAR _PrevMth =
        CALCULATE (
            MAX ( 'HC EPM'[Amount] ),
            'HC EPM'[EE ID] = _id,
            'HC EPM'[Scenario] = "Current Fcst",
            DATEADD ( 'Calendar'[Date], -1, MONTH )
        )
    VAR _CurrMth =
        CALCULATE (
            MAX ( 'HC EPM'[Amount] ),
            'HC EPM'[EE ID] = _id,
            'HC EPM'[Scenario] = "Current Fcst"
        )
    RETURN
        IF ( _PrevMth = 1 && _CurrMth = 0, -1, 0 )
)
1 REPLY 1
lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information or anything not related to the issue or question.

If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (27)