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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Mr_Indy
Frequent Visitor

Rolling subtraction by quarter

I have the total number (108) and i want to subtract it with the value i have every quarter. (I can have the total number as a Column or as measure.) My problem is that I want to use the "Count by quarter", which is giving me the total amount of items that need to be subtracted. The way the report is builded, i have the same number for every record. What i want to have at the end is
Total = 108

Q4 2022 = 7
New Total = 108-7 = 101
Q1 2023 = 17
New total = 101-17= 84

etc
Any idea how can i do it with DAX or some other method?

Thank you in advance

 

Mr_Indy_0-1670849980611.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Mr_Indy ,

 

We need a column like [Index] or [YearQuarter] to sort your [QT] column. Here I suggest you to create a DimDate table by dax.

DimDate = 
ADDCOLUMNS (
    CALENDAR ( DATE ( 2022, 01, 01 ), DATE ( 2023, 12, 31 ) ),
    "Year", YEAR ( [Date] ),
    "Month", MONTH ( [Date] ),
    "Quarter", QUARTER ( [Date] ),
    "QT",
        "Q" & ""
            & FORMAT ( [Date], "Q YYYY" ),
    "QY",
        YEAR ( [Date] ) * 100
            + QUARTER ( [Date] )
)

Relationship:

RicoZhou_1-1670899039852.png

Then you can try this code to create a calcualted column.

Rolling subtraction by quarter =
VAR _STEP1 =
    SUMMARIZE (
        ALL ( 'Table' ),
        'Table'[Burndown],
        'Table'[Count by quarter],
        'Table'[QT],
        "QY", CALCULATE ( MAX ( DimDate[QY] ) )
    )
VAR _STEP2 =
    ADDCOLUMNS (
        _STEP1,
        "Rolling subtraction by quarter",
            108
                - SUMX ( FILTER ( _STEP1, [QY] <= EARLIER ( [QY] ) ), [Count by quarter] )
    )
RETURN
    SUMX (
        FILTER ( _STEP2, [QT] = EARLIER ( 'Table'[QT] ) ),
        [Rolling subtraction by quarter]
    )

Result is as below.

RicoZhou_0-1670898838970.png

 

Best Regards,
Rico Zhou

 

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

2 REPLIES 2
Anonymous
Not applicable

Hi @Mr_Indy ,

 

We need a column like [Index] or [YearQuarter] to sort your [QT] column. Here I suggest you to create a DimDate table by dax.

DimDate = 
ADDCOLUMNS (
    CALENDAR ( DATE ( 2022, 01, 01 ), DATE ( 2023, 12, 31 ) ),
    "Year", YEAR ( [Date] ),
    "Month", MONTH ( [Date] ),
    "Quarter", QUARTER ( [Date] ),
    "QT",
        "Q" & ""
            & FORMAT ( [Date], "Q YYYY" ),
    "QY",
        YEAR ( [Date] ) * 100
            + QUARTER ( [Date] )
)

Relationship:

RicoZhou_1-1670899039852.png

Then you can try this code to create a calcualted column.

Rolling subtraction by quarter =
VAR _STEP1 =
    SUMMARIZE (
        ALL ( 'Table' ),
        'Table'[Burndown],
        'Table'[Count by quarter],
        'Table'[QT],
        "QY", CALCULATE ( MAX ( DimDate[QY] ) )
    )
VAR _STEP2 =
    ADDCOLUMNS (
        _STEP1,
        "Rolling subtraction by quarter",
            108
                - SUMX ( FILTER ( _STEP1, [QY] <= EARLIER ( [QY] ) ), [Count by quarter] )
    )
RETURN
    SUMX (
        FILTER ( _STEP2, [QT] = EARLIER ( 'Table'[QT] ) ),
        [Rolling subtraction by quarter]
    )

Result is as below.

RicoZhou_0-1670898838970.png

 

Best Regards,
Rico Zhou

 

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

Thank you Rico, it worked like a charm!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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