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

Countrows inside calculate with filters

Hi,

I have a problem with the following measure. I need to implement the commented code. In fact, I'd like to also filter all the

Contrats_Ent[SiteNum] where the count is 0.
Here is my measure

_Churn MtNet =
VAR minDate =
    MIN ( 'Contrats_Date'[Date] )
VAR maxDate =
    MAX ( 'Contrats_Date'[Date] )
RETURN
    CALCULATE (
        SUM ( Contrats_Fact[MtNet] ) * -1,
        FILTER (
            Contrats_Ent,
             ( Contrats_Ent[ContDtResil] <= maxDate
                && Contrats_Ent[ContDtResil] >= minDate )
        ),
        FILTER (
            Contrats_Fact,
             ( Contrats_Fact[PromoDeb] <= maxDate
                && Contrats_Fact[PromoFin] >= maxDate )
        ) /*CALCULATE(
                COUNT(Contrats_Ent[SiteNum]),
                        FILTER (Contrats_Ent, ISBLANK(Contrats_Ent[ContDtResil]) ||
                            Contrats_Ent[ContDtResil] < minDate && Contrats_Ent[ContDtResil] > maxDate
                        )
        )   */

    )

 

Many thanks for your help.
Jerome

2 REPLIES 2
mahoneypat
Employee
Employee

Please try this expression.  Note that I modified your FILTER parts to use better practice (just filter the column(s) you need, not the whole table).

 

_Churn MtNet =
VAR minDate =
    MIN ( 'Contrats_Date'[Date] )
VAR maxDate =
    MAX ( 'Contrats_Date'[Date] )
VAR FirstValue =
    CALCULATE (
        SUM ( Contrats_Fact[MtNet] ) * -1,
        FILTER (
            ALL ( Contrats_Ent[ContDtResil] ),
            Contrats_Ent[ContDtResil] <= maxDate
                && Contrats_Ent[ContDtResil] >= minDate
        ),
        FILTER (
            ALL ( Contrats_Fact[PromoDeb] ),
            Contrats_Fact[PromoDeb] <= maxDate
                && Contrats_Fact[PromoFin] >= maxDate
        )
    )
VAR SecondValue =
    CALCULATE (
        COUNT ( Contrats_Ent[SiteNum] ),
        FILTER (
            ALL ( Contrats_Ent[ContDtResil] ),
            ISBLANK ( Contrats_Ent[ContDtResil] )
                || ( Contrats_Ent[ContDtResil] < minDate
                && Contrats_Ent[ContDtResil] > maxDate )
        )
    )
RETURN
    DIVIDE ( FirstValueSecondValue )

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Hello

Thanks. I found another way to work it out.

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