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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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