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
Pal03
Frequent Visitor

Sum over partition by

Hello everyone , I am trying to achieve this . I have a table with Date , account , segment , revenue and sector. I am trying to get 

total revenue based on Date , Account , segment only.

2018-06-18_14-22-35.png

 

My total revenue changes  everytime there is a new date ,account , segment combination  (ignoring the sector) Please help

 

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

Hi @Pal03

 

Here is how you can do it with a calculated column

 

Total Revenue = 
    CALCULATE(
        SUM('Table1'[Revenue]),
        FILTER(
            'Table1',
            'Table1'[Date] = EARLIER('Table1'[Date]) &&
            'Table1'[Account] = EARLIER('Table1'[Account]) &&
            'Table1'[Segment] = EARLIER('Table1'[Segment]) 
            )   
)

image.png


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

7 REPLIES 7
vbhat
Regular Visitor

Can we do the same in Power query?

Phil_Seamark
Employee
Employee

Hi @Pal03

 

Here is how you can do it with a calculated column

 

Total Revenue = 
    CALCULATE(
        SUM('Table1'[Revenue]),
        FILTER(
            'Table1',
            'Table1'[Date] = EARLIER('Table1'[Date]) &&
            'Table1'[Account] = EARLIER('Table1'[Account]) &&
            'Table1'[Segment] = EARLIER('Table1'[Segment]) 
            )   
)

image.png


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

A couple of years let, but thanks for this reply!! it saved my @$$

 

Anonymous
Not applicable

Thanks a lot!!

Just wondering - Would it be possible to do this using power query / M?

Thanks a ton . It works !!

Pal03
Frequent Visitor

Actually quite excited that it works in power BI. Once again thank you 🙂

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.