cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Sidd_Kaush
Frequent Visitor

Cumulative Total for Coming Two Months

Currently i am looking for an solution called cumulative total in months, Lets Say If there's June Month in the row context then it should show up the sales value for July abd August, Similary If there's July then it should show up sales for August abd September. So basically its the cumulative of two months together.

@amitchandak 

2 ACCEPTED SOLUTIONS

Hi @Sidd_Kaush 

Its working fine, I hope you are using custom date table

 

vk_pbi_1-1684994498313.png

 

View solution in original post

Sidd_Kaush
Frequent Visitor

PBI1.pngIts Not Working for me but i came up with below calculation and its working correct for me,

 

Test3 =
Var a= SELECTEDVALUE(Sheet1[Dte])
Var b=Month(a)
Var c=b+1
Var d=c+1
Var e= CALCULATE(Sheet1[Total Sales],ALL(Sheet1),FILTER('DATE','DATE'[MonthNo] in {c,d}))
Return If (e=blank(),0,e)

View solution in original post

4 REPLIES 4
Sidd_Kaush
Frequent Visitor

PBI1.pngIts Not Working for me but i came up with below calculation and its working correct for me,

 

Test3 =
Var a= SELECTEDVALUE(Sheet1[Dte])
Var b=Month(a)
Var c=b+1
Var d=c+1
Var e= CALCULATE(Sheet1[Total Sales],ALL(Sheet1),FILTER('DATE','DATE'[MonthNo] in {c,d}))
Return If (e=blank(),0,e)
Sidd_Kaush
Frequent Visitor

Hello Its not working as it retrieves the same rows within the calculation.

Hi @Sidd_Kaush 

Its working fine, I hope you are using custom date table

 

vk_pbi_1-1684994498313.png

 

vk_pbi
Resolver II
Resolver II

Hi,

Hopefully, the below dax will works

IF(
    ISBLANK([Total Sales]),BLANK(),
CALCULATE(
    [Total Sales],
    DATESINPERIOD(
        'Date'[Date],
        MAX('Date'[Date]),
        2,MONTH
    )
)
)

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors