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

Sum column values based on another column

Hi All

 

I have some data and I want to sum 'Translated Ampount' based on 'revenue Category' column and then be able to map it with the customer. PLease let me know how can I do that. Apprecaite any help.2017-08-17_15-34-11.png

 

 Thanks

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

HI @aggarwal25,

 

You can take a look at below formulas if it suitable for your requirement:

 

Calculate column:

 

Sum Group = CALCULATE(SUM('Table'[Translated Ampount]),FILTER(ALL('Table'),[Revenue Catagory]=EARLIER('Table'[Revenue Catagory])) )

 

 

Measure:

 

Sum group 2 =
var catagory=LASTNONBLANK('Table'[Revenue Catagory],[Revenue Catagory])
return
CALCULATE(SUM('Table'[Translated Ampount]),FILTER(ALL('Table'),[Revenue Catagory]=catagory))

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
Neftali
New Member

Neftali_0-1659543183330.png

Hi all

 

I have this data and I want to sum "Total Qty Per Request" based on the "Material Name." So I want the sum of the "Total Qty Per Request" for "Bot Bev G5," "Dexron LS Gear Oil 75W-90," etc. How would I be able to make a measure for this?

I have the same question about how to sum a column based on another column and cannot get a solution using the result provided. The "EARLIER" command isn't understood in my expression. Got any tips?

v-shex-msft
Community Support
Community Support

HI @aggarwal25,

 

You can take a look at below formulas if it suitable for your requirement:

 

Calculate column:

 

Sum Group = CALCULATE(SUM('Table'[Translated Ampount]),FILTER(ALL('Table'),[Revenue Catagory]=EARLIER('Table'[Revenue Catagory])) )

 

 

Measure:

 

Sum group 2 =
var catagory=LASTNONBLANK('Table'[Revenue Catagory],[Revenue Catagory])
return
CALCULATE(SUM('Table'[Translated Ampount]),FILTER(ALL('Table'),[Revenue Catagory]=catagory))

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
Anonymous
Not applicable

@Hi @aggarwal2,

 

Is there a customer in this table or is there a related table that contains customer? If this is the case you can easily drag and drop customer, translated amount an revenue category onto the Power BI desktop canvas and it works. Also you could create several measures that sum the different revenue categories like:

 

Consulting Revenue =
SUMX (
    FILTER ( Table1; Table1[Revenue Category] = "Consulting" );
    Table1[Translated Amount]
)

If there is no customer table related to this table or no customer in this table, how would you assign a part of the Translated amount to a customer? So what is the distribution key?

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.