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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Saxon10
Post Prodigy
Post Prodigy

SUM(INDEX(1/COUNTIFS in Power BI

Hi,

 

How can I do sum and countifs in Power BI.

 

I have a following column are item, id type, colour code text in my Table and I would like to get the unique count based those columns.

I am able to count by using below mentioned DAX code but I don't how can I do sum and index in my exciting DAX code.

countifs =
VAR ITEEM = Data[Item]
VAR IDTYPE =Data[Id Type]
VAR CCTEXT = Data[Colour Code Text]
RETURN
COUNTROWS(FILTER(Data,
[Item]=ITEEM && [Id Type]=IDTYPE && [Colour Code Text]=CCTEXT
))
 

In Excel I am applying the following formula and I would like to get the same thing in PBI. Could you please provide the DAX solution.

 

D3=SUM(INDEX(1/COUNTIFS(A$3:A$101,A3,B$3:B$101,B3,C$3:C$101,C3),0))

 

Herewith attached the PBI for your reference.

 

Saxon10_0-1632489037442.png

 

 

Saxon10_1-1632489385377.png

 

https://www.dropbox.com/s/6viom43bcbfrklo/SUM%20INDEX%20COUNTIFS.pbix?dl=0

 

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

@Saxon10 ,for your reference,

 

=  1 / COUNTROWS(
        FILTER(
            'Table',
            'Table'[Item] = EARLIER( 'Table'[Item] )
                && 'Table'[Id Type] = EARLIER( 'Table'[Id Type] )
                && 'Table'[Colour Code Text] = EARLIER( 'Table'[Colour Code Text] )
        )
    )

 

 

Another piece of advice on Excel formula, using Structured Reference makes formula readable and dynamic. Structured Reference is one of the most elegant features of Excel.


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

4 REPLIES 4
CNENFRNL
Community Champion
Community Champion

@Saxon10 ,for your reference,

 

=  1 / COUNTROWS(
        FILTER(
            'Table',
            'Table'[Item] = EARLIER( 'Table'[Item] )
                && 'Table'[Id Type] = EARLIER( 'Table'[Id Type] )
                && 'Table'[Colour Code Text] = EARLIER( 'Table'[Colour Code Text] )
        )
    )

 

 

Another piece of advice on Excel formula, using Structured Reference makes formula readable and dynamic. Structured Reference is one of the most elegant features of Excel.


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Thanks for your reply and help.

Your solution is working well. 

I try to make structured references formula so it's easy to read it. 

amitchandak
Super User
Super User

@Saxon10 ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Thanks for your reply. Here is the data for your reference.

 

Herewith attached the PBI for your reference 

https://www.dropbox.com/s/6viom43bcbfrklo/SUM%20INDEX%20COUNTIFS.pbix?dl=0

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.