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
Anonymous
Not applicable

how to remove cumulative total

Hi Everyone,

I am trying to convert finnacial statement from excel to power Bi. But some of the values are getting added up for every month. How should I get back to the original values of the month!! if you see the picture below, you can see that for net sales i can see for all allowances, freight and gross sales, everything is getting added up? how should i remove this? very confused. tried almost everything but not helpingas you can see, everything in the net sales is getting added up with months, how do i see indivual values for months. i mean the original valuesas you can see, everything in the net sales is getting added up with months, how do i see indivual values for months. i mean the original values

1 ACCEPTED SOLUTION
v-gizhi-msft
Community Support
Community Support

Hi,

 

Please try to create this column first:

MonthNo = MONTH('Table'[Date])

Then you can try this measure to show the original data:

Measure = 
CALCULATE (
    MAX ( 'Table'[Values] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Department] IN FILTERS ( 'Table'[Department] )
            && 'Table'[Category] IN FILTERS ( 'Table'[Category] )
            && 'Table'[MonthNo] = MAX ( 'Table'[MonthNo] )
    )
)
    - CALCULATE (
        MAX ( 'Table'[Values] ),
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[Department] IN FILTERS ( 'Table'[Department] )
                && 'Table'[Category] IN FILTERS ( 'Table'[Category] )
                && 'Table'[MonthNo]
                    = MAX ( 'Table'[MonthNo] ) - 1
        )
    )

The result shows like this:

52.PNG

Here is my test pbix file:

pbix 

Hope this helps.

 

Best Regards,

Giotto

 

View solution in original post

2 REPLIES 2
v-gizhi-msft
Community Support
Community Support

Hi,

 

Please try to create this column first:

MonthNo = MONTH('Table'[Date])

Then you can try this measure to show the original data:

Measure = 
CALCULATE (
    MAX ( 'Table'[Values] ),
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[Department] IN FILTERS ( 'Table'[Department] )
            && 'Table'[Category] IN FILTERS ( 'Table'[Category] )
            && 'Table'[MonthNo] = MAX ( 'Table'[MonthNo] )
    )
)
    - CALCULATE (
        MAX ( 'Table'[Values] ),
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[Department] IN FILTERS ( 'Table'[Department] )
                && 'Table'[Category] IN FILTERS ( 'Table'[Category] )
                && 'Table'[MonthNo]
                    = MAX ( 'Table'[MonthNo] ) - 1
        )
    )

The result shows like this:

52.PNG

Here is my test pbix file:

pbix 

Hope this helps.

 

Best Regards,

Giotto

 

Greg_Deckler
Super User
Super User

Hard to tell with the information provided. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.