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

Summing Column on Multiple Category

Hello All,

 

I have this table

engergyCapture.PNG

 

I already have a Tabular Model created to be used in Power BI. I was wondering how to calculated the adjusted consumption using DAX based on its formula shown below the table?

 

Thanks,

 

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @baw556 

Do you want it across all asset types and classes? If so, place tis measure in a card visual:

 

Measure =
VAR Constant_ = 4.3456
RETURN
    CALCULATE ( SUM ( Table1[Consumption] ), Table1[Fuel] = "Electricity" )
        + CALCULATE ( SUM ( Table1[Consumption] ), Table1[Fuel] = "Gas" ) * Constant_

  

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

View solution in original post

3 REPLIES 3
AlB
Super User
Super User

Hi @baw556 

Do you want it across all asset types and classes? If so, place tis measure in a card visual:

 

Measure =
VAR Constant_ = 4.3456
RETURN
    CALCULATE ( SUM ( Table1[Consumption] ), Table1[Fuel] = "Electricity" )
        + CALCULATE ( SUM ( Table1[Consumption] ), Table1[Fuel] = "Gas" ) * Constant_

  

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

baw556
Frequent Visitor

Thanks AIB for your response and I apologize for late reply.

 

Yes, I wanted to aggregate accross asset type and class.

 

When I appplied the formula, it only aggregates the valus for Electricity and doesn't include the secod part of the formula (Gas cons. * constant)

 

Any thoughts?

 

Thanks,

Baw556

baw556
Frequent Visitor

 

The desired result from below should be Adjusted_consumption approx. 203. However, using the formula above, I'm still getting 55.

 

Thanks in advance.

 

engergyCapture2.PNG

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