Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
analystict
Helper I
Helper I

Sum of a measure filtered by two different columns.

Hi,

 

I've been trying to find a solution for this and the closest solution that I got to was using EARLIER() which did not serve the purpose due to the (slightly) complex situation.

 

I have a table called Affiliates which appears like so, and what I'm trying to calculate is the master result, which is for this instance, the income multiplied by 0.5. This master commission should only apply to the master affiliates like so:

 

 

Affiliate| Income | Master | Master Commission

John     | 800    | Bruce  | 0 (Not a master of anyone)

Dave     | 200    | Bruce  | 0 (Not a master of anyone)

Bruce    | 1000   | Adam   | 565 (800+200+130 multiplied by 0.5) (Master of John, Dave and Yves).

Adam     |  4000  |        | 500 (1000 multiplied by 0.5) (Master of Bruce)

Yves     |  130   | Bruce  | 0 (Not a master of anyone)

 

 

I'd appreciate some advice regarding on the calculation of this measure.

 

Thanks!

 

 

2 ACCEPTED SOLUTIONS
AlB
Super User
Super User

Hi @analystict

 

Try this for a new column on your table (Table1):

 

NewColumnMasterCommission =
VAR _CurrentAffiliate = Table1[Affiliate]
RETURN
    ( 1 / 2 )
        * CALCULATE (
            SUM ( Table1[Income] ),
            FILTER (
                Table1,
                Table1[Master] = _CurrentAffiliate
            )
        )

 

 

View solution in original post

v-jiascu-msft
Employee
Employee

Hi @analystict,

 

If you'd like a measure, try this one.

Measure =
CALCULATE (
    SUM ( Table1[Income] ),
    FILTER ( ALL ( 'Table1' ), 'Table1'[Master] = MIN ( Table1[Affiliate] ) )
) * 1 / 2

Sum-of-a-measure-filtered-by-two-different-columns

 

 

Best Regards,

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

View solution in original post

3 REPLIES 3
v-jiascu-msft
Employee
Employee

Hi @analystict,

 

If you'd like a measure, try this one.

Measure =
CALCULATE (
    SUM ( Table1[Income] ),
    FILTER ( ALL ( 'Table1' ), 'Table1'[Master] = MIN ( Table1[Affiliate] ) )
) * 1 / 2

Sum-of-a-measure-filtered-by-two-different-columns

 

 

Best Regards,

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

Did the trick, thank you 🙂

AlB
Super User
Super User

Hi @analystict

 

Try this for a new column on your table (Table1):

 

NewColumnMasterCommission =
VAR _CurrentAffiliate = Table1[Affiliate]
RETURN
    ( 1 / 2 )
        * CALCULATE (
            SUM ( Table1[Income] ),
            FILTER (
                Table1,
                Table1[Master] = _CurrentAffiliate
            )
        )

 

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.