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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Dax Formula simplification

Hi All,

 

sorry if in the wrong topic area, but wondering if someone could help?

 

looking to simplify the following "working" measure 

 

Eliminations = -
(CALCULATE([Actuals INDY],'Finance Data','Finance Data'[ANAL_T5]="II")+CALCULATE([Actuals INDY],'Finance Data','Finance Data'[ANAL_T5]="IRL")+CALCULATE([Actuals INDY],'Finance Data','Finance Data'[ANAL_T5]="IML")+
CALCULATE([Actuals MRL],'Finance Data','Finance Data'[ANAL_T5]="II")+CALCULATE([Actuals MRL],'Finance Data','Finance Data'[ANAL_T5]="IRL")+CALCULATE([Actuals MRL],'Finance Data','Finance Data'[ANAL_T5]="IML")+
CALCULATE([Actuals MRU],'Finance Data','Finance Data'[ANAL_T5]="II")+CALCULATE([Actuals MRU],'Finance Data','Finance Data'[ANAL_T5]="IRL")+CALCULATE([Actuals MRU],'Finance Data','Finance Data'[ANAL_T5]="IML")+
CALCULATE([Actuals MTC],'Finance Data','Finance Data'[ANAL_T5]="II")+CALCULATE([Actuals MTC],'Finance Data','Finance Data'[ANAL_T5]="IRL")+CALCULATE([Actuals MTC],'Finance Data','Finance Data'[ANAL_T5]="IML"))

 

 

it does work as intended but seems to not be the best way to do it,

 

have tried looking on how to implement is or into the formula but coulnd see anything on search that fit the example 

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

Try one of the following formulas:

 

Eliminations =
- CALCULATE (
    [Actuals INDY] + [Actuals MRL] + [Actuals MRU] + [Actuals MTC],
    'Finance Data',
    'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
)


Eliminations =
- (
    CALCULATE (
        [Actuals INDY],
        'Finance Data',
        'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
    )
        + CALCULATE (
            [Actuals MRL],
            'Finance Data',
            'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
        )
        + CALCULATE (
            [Actuals MRU],
            'Finance Data',
            'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
        )
        + CALCULATE (
            [Actuals MTC],
            'Finance Data',
            'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
        )
)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @Anonymous ,

 

Try one of the following formulas:

 

Eliminations =
- CALCULATE (
    [Actuals INDY] + [Actuals MRL] + [Actuals MRU] + [Actuals MTC],
    'Finance Data',
    'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
)


Eliminations =
- (
    CALCULATE (
        [Actuals INDY],
        'Finance Data',
        'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
    )
        + CALCULATE (
            [Actuals MRL],
            'Finance Data',
            'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
        )
        + CALCULATE (
            [Actuals MRU],
            'Finance Data',
            'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
        )
        + CALCULATE (
            [Actuals MTC],
            'Finance Data',
            'Finance Data'[ANAL_T5] IN { "II", "IRL", "IML" }
        )
)

Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Anonymous
Not applicable

Thanks you so much used the first, ad now looking into the IN { 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.