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
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
Employee
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
Employee
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
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.