cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Hubner
New Member

Calculate with slice

Hello!

 

Can someone help me? How can I use a metric by filtering the slice in expression calculate?

 

Exemple: 

 

SelectedSLICE = MIN('FatoMeta Budget MP e Horas'[idMes])

 

Meta Budget MP = CALCULATE(SUM('FatoMeta Budget MP e Horas'[Meta MP]);'FatoMeta Budget MP e Horas'[idMes]<[SelectedSLICE])/1000

 

 

1 ACCEPTED SOLUTION

Hi @Hubner,

 

So I think you need to add a filter statement into your calculate solution since you're referencing a DAX measure in the filter. I also like to think of DAX Measures as building blocks, since there is a good chance you'd want to reference the SUM of Meta MP in another formula, why not give that its own DAX Measure that other formulas can reference? So I'd do this in two steps.

 

First Formula:

[SUM of Meta MP] = SUM ( 'FatoMeta Budget MP e Horas'[Meta MP] )

 

Second Formula: 

Meta Budget MP =
CALCULATE (
    [SUM of Meta MP],
    FILTER ( 'FatoMeta Budget MP e Horas', [idMes] < [SelectedSLICE] )
)
    / 1000

By the way, if you ever want to easily format your DAX Formulas. DAX Formatter is a great website for that. 🙂

 

Best Regards,

Reid Havens - Owner | Founder

Havens Consulting Inc.

View solution in original post

1 REPLY 1

Hi @Hubner,

 

So I think you need to add a filter statement into your calculate solution since you're referencing a DAX measure in the filter. I also like to think of DAX Measures as building blocks, since there is a good chance you'd want to reference the SUM of Meta MP in another formula, why not give that its own DAX Measure that other formulas can reference? So I'd do this in two steps.

 

First Formula:

[SUM of Meta MP] = SUM ( 'FatoMeta Budget MP e Horas'[Meta MP] )

 

Second Formula: 

Meta Budget MP =
CALCULATE (
    [SUM of Meta MP],
    FILTER ( 'FatoMeta Budget MP e Horas', [idMes] < [SelectedSLICE] )
)
    / 1000

By the way, if you ever want to easily format your DAX Formulas. DAX Formatter is a great website for that. 🙂

 

Best Regards,

Reid Havens - Owner | Founder

Havens Consulting Inc.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors