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
Samarth-Borade
Frequent Visitor

How do I summarize a measure into a column?

new_sales =
 CALCULATE([pp],ALLEXCEPT(grp,grp[_Customer Code]))
------------------
pp =
VAR TblSummary = ADDCOLUMNS(
                    SUMMARIZE(grp,grp[_Customer Code],grp[_EDC Tradelane],grp[_STC Tradelane]),
                    "SummaryCol",CALCULATE(SUM(grp[Rev])))
RETURN
    SUMX(TblSummary,[SummaryCol])
 -----------------------
IMP: pp is measure and i want new_sales as a NEW COLUMN which is same as pp.

Here pp and new_sales should be same.

using allexcept to summarize is giving wrong values.

3 REPLIES 3
v-rzhou-msft
Community Support
Community Support

Hi @Samarth-Borade ,

 

Do you want to calcualte the sum baed on group of three columns: grp[_Customer Code]/grp[_EDC Tradelane]/grp[_STC Tradelane]? Here I suggest you to try code as below to achieve your goal.

new_sales = 
CALCULATE(SUM(grp[Rev]),ALLEXCEPT(grp,grp[_Customer Code],grp[_EDC Tradelane],grp[_STC Tradelane]))

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

FreemanZ
Super User
Super User

hi @Samarth-Borade 

what columns do you have in your grp table?

 

Table name : grp

Column: cust_name, cust_code, edc_lane, stc_lane,revenue

Slicers: cust_code,edc_lane,stc_lane

when i select cust_code in slicer : it is not summarzing up instead it is giving values for each.

code: 

new_sales = CALCULATE(SUM(grp[Rev]),ALLEXCEPT(grp,grp[_Customer Code],grp[_custname],grp[_EDC Tradelane],grp[_STC Tradelane])) 
Not working!

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.

Top Solution Authors