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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Calculate count based on some condition

I have a data like this.

Capture.PNG

 

I wants to calculate count of type based on two condition....

1)Count for type where endt=0 for types(Cancel,endt)

2)Count for type where endt greater than 0 for types (new,renewal).

Based on this calculation i want to create report like this.

Capture.PNG

 

3 REPLIES 3
selimovd
Super User
Super User

Hello @Anonymous 

 

try the following 2 measures:

Count 1 =
CALCULATE(
    COUNTROWS( myTable ),
    myTable[endt] = 0,
    FILTER( myTable, myTable[type] = "Cancel" || myTable[type] = "endt" )
)

 

And for your second case:

Count 2 =
CALCULATE(
    COUNTROWS( myTable ),
    myTable[endt] > 0,
    FILTER( myTable, myTable[type] = "new" || myTable[type] = "renewal" )
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍

Best regards
Denis

Blog: WhatTheFact.bi

Anonymous
Not applicable

hello,

 Actually i want to show both these count measures as together for using in matrix table as a column....Is it possible?

Hi @Anonymous ,

Try the following formula:

Measure = 
    var Count1 = 
        CALCULATE(
            COUNTROWS( 'Table' ),
            'Table'[endt] = 0,
            FILTER( 
                'Table', 
                'Table'[type] = "Cancel" || 'Table'[type] = "endt" 
            )
        )
    var Count2 = 
        CALCULATE(
            COUNTROWS( 'Table' ),
            'Table'[endt] > 0,
            FILTER( 
                'Table', 
                'Table'[type] = "new" || 'Table'[type] = "renewal" 
            )
        )
    var result = 
        IF(
            MAX('Table'[type]) = "Cancel" || MAX('Table'[type]) = "endt" ,
            "A",
            "B"
        )
    return 
        IF(
            result = "A",
            Count1,
            Count2
        )

v-kkf-msft_0-1616129758619.png

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.