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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
giuliapiazza94
Helper IV
Helper IV

Cumulative measure / 100

Hi guys,

i need to create a measure that works like this:

 

giuliapiazza94_0-1722582924279.png

 

giuliapiazza94_3-1722582990544.png

 

giuliapiazza94_1-1722582939056.png

 

giuliapiazza94_2-1722582961198.png

 

How can I create it?

 

Thank you all 🙂

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@bhanu_gautam , Thank you for your positive response to the post.

 

Hi @giuliapiazza94 

 

Here is my solution, I hope this helps.

1.Create a measure to calculate Y/100.

FirstMonthYDiv100 = CALCULATE(
    MIN('Table'[Y]), 
    FILTER(
        ALL('Table'), 
        'Table'[Month] = MINX(ALL('Table'), 'Table'[Month]
        )
    )
)/100

 

2.Create a cumulative measure for column X.

CumulativeSumX = CALCULATE(
    SUM('Table'[X]),
    FILTER(
        ALLSELECTED('Table'),
        'Table'[Month] <= MAX('Table'[Month])
    )
)

 

3.Create a measure Z.

Z = [FirstMonthYDiv100] + [CumulativeSumX]

 

4.Here is my final result.

1.png

Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

@bhanu_gautam , Thank you for your positive response to the post.

 

Hi @giuliapiazza94 

 

Here is my solution, I hope this helps.

1.Create a measure to calculate Y/100.

FirstMonthYDiv100 = CALCULATE(
    MIN('Table'[Y]), 
    FILTER(
        ALL('Table'), 
        'Table'[Month] = MINX(ALL('Table'), 'Table'[Month]
        )
    )
)/100

 

2.Create a cumulative measure for column X.

CumulativeSumX = CALCULATE(
    SUM('Table'[X]),
    FILTER(
        ALLSELECTED('Table'),
        'Table'[Month] <= MAX('Table'[Month])
    )
)

 

3.Create a measure Z.

Z = [FirstMonthYDiv100] + [CumulativeSumX]

 

4.Here is my final result.

1.png

Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

bhanu_gautam
Super User
Super User

@giuliapiazza94 , Can you explain what exactly you are trying to do




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






I need to create Z but I don't know how

X and Y are two measures.

X = total of new customers of month

Y = total customers

 

I need to create Z: 

Z of first month selected (in this example is january) = Y / 100

Z of other months =  Z(previous month) + X

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.