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
rashel2002
Helper II
Helper II

Help-How to change values to zero using measure on measure

Hi everyone!

 

i'm trying to create new column out of an existing column (cumulative column which was created by measure) - and change all the values that folowing the max value - to zero. here's an example-

 

17.PNG

 

Another option that might help is to keep the table as it is (not changing anything), BUT when i'm using the data to create "Line & stacked column chart" - it will look like we're using the right table.

 

thank you for your help!

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @rashel2002,

 

Since some rows have the same cumulative value with previous row, I assume the hour number for current WW is 0. So, I created below dummy data.

1.PNG        2.PNG

 

In such a scenario, please create measures:

cumulative No. of hours =
IF (
    SELECTEDVALUE ( 'Hour table'[WW] )
        > CALCULATE (
            LASTNONBLANK ( 'Hour table'[WW], 1 ),
            FILTER ( ALL ( 'Hour table' ), 'Hour table'[hours] <> 0 )
        ),
    0,
    CALCULATE (
        SUM ( 'Hour table'[hours] ),
        FILTER ( ALL ( 'Hour table' ), 'Hour table'[WW] <= MAX ( 'Hour table'[WW] ) )
    )
)

2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @rashel2002,

 

Since some rows have the same cumulative value with previous row, I assume the hour number for current WW is 0. So, I created below dummy data.

1.PNG        2.PNG

 

In such a scenario, please create measures:

cumulative No. of hours =
IF (
    SELECTEDVALUE ( 'Hour table'[WW] )
        > CALCULATE (
            LASTNONBLANK ( 'Hour table'[WW], 1 ),
            FILTER ( ALL ( 'Hour table' ), 'Hour table'[hours] <> 0 )
        ),
    0,
    CALCULATE (
        SUM ( 'Hour table'[hours] ),
        FILTER ( ALL ( 'Hour table' ), 'Hour table'[WW] <= MAX ( 'Hour table'[WW] ) )
    )
)

2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Stachu
Community Champion
Community Champion

can you post the original data table and syntax for the cumulative measure? Otherwise it's difficult to answer your question



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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