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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
zzinoun
Resolver I
Resolver I

Max of cumulative sum measure

Hello Everyone,

 

i wanted to display a measure that shows only a fraction of a cumulative sum based on Year field (e.g. 2022) 

zzinoun_0-1652102747915.png

I created the folowing measure but I don(t find the right result 

Running Total (2022) =
var a=
MIN ( 'API : EW (QTO)'[API : EW (FM).Update Date] )
VAR maxd =
CALCULATE ( MAX ( 'Table'[API : EW (FM).Update Date] ), ALL ( 'API : EW (QTO)' ) )
RETURN
IF (
    a <= maxd,
         CALCULATE (SUM ( 'API : EW (QTO)'[QTO.Total Volume]),
         FILTER ( ALL ( 'API : EW (QTO)'), 'API : EW (QTO)'[API : EW (FM).Update Date]<= a ),
         FILTER ( ALL ( 'API : EW (QTO)'), 'API : EW (QTO)'[API : EW (FM).Update Date].[year]=2022)
)
)
 
as you can see below February should be 11.2M not 3M. what did I miss here ?
zzinoun_1-1652103261655.png

 

 

Thanks

 
2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@zzinoun , If you have a date I will suggest YTD

 

example with help from date tbale

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))

 

using year and month

YTD= CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Month] <= Max('Date'[Month]) ))

 

using day of year

YTD= CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Day of Year] <= Max('Date'[Day of Year]) ))

 

you can use allselected in place of all if needed

 

View solution in original post

zzinoun
Resolver I
Resolver I

I don't have a date table only a column.

is there something to add to the measure in order to retrieve only the max value per month ?

thanks 

View solution in original post

2 REPLIES 2
zzinoun
Resolver I
Resolver I

I don't have a date table only a column.

is there something to add to the measure in order to retrieve only the max value per month ?

thanks 

amitchandak
Super User
Super User

@zzinoun , If you have a date I will suggest YTD

 

example with help from date tbale

YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))

 

using year and month

YTD= CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Month] <= Max('Date'[Month]) ))

 

using day of year

YTD= CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year]=max('Date'[Year]) && 'Date'[Day of Year] <= Max('Date'[Day of Year]) ))

 

you can use allselected in place of all if needed

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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