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
GA1993
Helper II
Helper II

Translate EXCEL to DAX Function

Could someone please help me understand and translate an Excel formula to DAX solution?

 

=COUNTIFS($D:$D,"",$A:$A,"<>",$B:$B,"<>",$C:$C,"")

 

GA1993_0-1631481065559.png

 

I tried doing it in bits to understand and this is what I got...

=COUNTIF($D:$D,"") = 1048573 (or the cells from excel that are blank)

=COUNTIF($A:$A,"<>") = 4

=COUNTIF($B:$B,"<>") = 4

=COUNTIF($C:$C,"") = 1048571 (or the cells from excel that are blank)

 

Now to put it together =COUNTIFS($D:$D,"",$A:$A,"<>",$B:$B,"<>",$C:$C,""), the result from my understanding would be 2 since it already has trimmed down the statements... (but the result was 0!)

 

I translated this to DAX in the hopes that I could get a sense of it, but the result was blank..

 
How do I translate filtering those that have no duplicates of values for Cells A and B because I assume this is where the mistake is?

 

Approval = CALCULATE (
    COUNTROWS ('Excel'),
        FILTER (
            'Excel',
                'Excel (A).[Date] <> 'Excel (A).[Date]
                && 'Excel (B).[Date] <> 'Excel (B).[Date]
                && 'Excel (C) = Blank()
            )
    )

 

 

 

2 REPLIES 2
wdx223_Daniel
Super User
Super User

COUNTROWS (
        FILTER (
            'Excel',
                NOT(ISBLANK('Excel'[A]))
                &&NOT(ISBLANK('Excel'[B]))
                && ISBLANK('Excel'[C])
                && ISBLANK('Excel'[D])
            ))

I understand C & D as "ISBLANK", but I am not sure with A & B as they are looking for the Distinct values. I am just not sure how to translate this to a DAX function..

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