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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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