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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Is there a Dax or Var formula to sum across rows for 3,6,9 months?

Hi All, 

 

I am trying to find a solution to add columns that sum across rows for customers as in the example below:

 

Add Rows.png

 

 

3 REPLIES 3
Anonymous
Not applicable

@saurabhtd what format should the folling be?       'Table'[Month]

saurabhtd
Resolver II
Resolver II

@Anonymous You can try these formulas for creating calculated column. 

Last 3 Months = 
VAR CurrentMonth = MAX(Table[Month])
RETURN
CALCULATE(
    SUM(Table[Revenue]),
    FILTER(
        Table,
        Table[Customer] = EARLIER(Table[Customer]) &&
        Table[Month] >= CurrentMonth - 2
    )
)
Last 6 Months = 
VAR CurrentMonth = MAX(Table[Month])
RETURN
CALCULATE(
    SUM(Table[Revenue]),
    FILTER(
        Table,
        Table[Customer] = EARLIER(Table[Customer]) &&
        Table[Month] >= CurrentMonth - 5
    )
)
Last 9 Months = 
VAR CurrentMonth = MAX(Table[Month])
RETURN
CALCULATE(
    SUM(Table[Revenue]),
    FILTER(
        Table,
        Table[Customer] = EARLIER(Table[Customer]) &&
        Table[Month] >= CurrentMonth - 8
    )
)
Anonymous
Not applicable

Is it possible to add a if statement here as well? So if 0 revenue, then "Lost Customer"

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI 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.