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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Manuel123
Helper I
Helper I

Cumulated calculation does not stop with end of data

Dear Community,

 

I hope you can help me with the followind issue:

 

- I have a measure calculated that cumulates a value:

Capacity cumulated = 

var LastPresentationDate = CALCULATE(LASTDATE(tblProject[Presentation.Date]),ALL(tblProject))

return
IF(
    SELECTEDVALUE(tblDate[Date])>LastPresentationDate,BLANK(),
        CALCULATE([Capacity],
            FILTER(
                ALL(tblDate[Date]),
                tblDate[Date]<=min(MAX(tblDate[Date]),DATE(YEAR(TODAY()),12,31))
            )
        )
    )

The LastPresentationDate is 31.01.2023.

However, when I put the values in a bar chart with the date hirarchy as x-axis it shows the cumulated value until the year 2100 instead of stopping in 2023. How can I manage to a bar chart with cumulated values that stops when the values stop, in this example in 2023?

 

I hope I did manage to explain my problem properly, if not please ask.

 

Looking forward to your answers/suggestions/help

 

Best regards

Manuel

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hello @Manuel123 ,

I understood your question but the problem is you use selected value to aggregate date value which is in this case is not useful because you didn't have any slicers.

You can use below measure code to achieve your desire output : 

Capacity cumulated =
var LastPresentationDate = CALCULATE(LASTDATE(tblProject[Presentation Date]),ALL(tblProject))

VAR Capacity =
IF(MAX(tblDate[Date]) <= LastPresentationDate,CALCULATE(SUM(tblProject[Capacity]),
FILTER(
ALL(tblDate[Date]),
tblDate[Date]<=min(MAX(tblDate[Date]),DATE(YEAR(TODAY()),12,31))
)
),BLANK() )
return
Capacity

Thanks,
Neel

 

View solution in original post

2 REPLIES 2
Manuel123
Helper I
Helper I

Dear @Anonymous,

 

thank you very much for your fast reply and the perfect working solution.

 

Best regards

Manuel

Anonymous
Not applicable

Hello @Manuel123 ,

I understood your question but the problem is you use selected value to aggregate date value which is in this case is not useful because you didn't have any slicers.

You can use below measure code to achieve your desire output : 

Capacity cumulated =
var LastPresentationDate = CALCULATE(LASTDATE(tblProject[Presentation Date]),ALL(tblProject))

VAR Capacity =
IF(MAX(tblDate[Date]) <= LastPresentationDate,CALCULATE(SUM(tblProject[Capacity]),
FILTER(
ALL(tblDate[Date]),
tblDate[Date]<=min(MAX(tblDate[Date]),DATE(YEAR(TODAY()),12,31))
)
),BLANK() )
return
Capacity

Thanks,
Neel

 

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.

Top Solution Authors