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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply

DAX Calculation unique Count

Hi Team,

 

I am trying to create report for Retail Analytics.  I have a table with Columns -

Phone Number, Invoice Date which has duplicates.

 

With Invoice Date I am getting No. of visits (Calculated Measure) with the formula  CALCULATE(COUNT(CustomerInvoice[Invoice Date]),ALLEXCEPT(CustomerInvoice, CustomerInvoice[Invoice Date],CustomerInvoice[Phone Number],CustomerInvoice[val])

 

Another Calculated Measure Fraud or Valid - >Fraud or Valid = (IF([No Of Visits] > 3, "FRAUD", "VALID"))

I need to show the number of Fraud Counts in a card visual.

 

PYerror.PNG

 

Since I am having duplicate Phone Number or Invoice Date. I am not getting the Fraud Count correctly.

 

Kindly help me on getting the DAX query.

 

Regards,

Gowrishankar

 

Regards,

Gowrishankar

 

1 ACCEPTED SOLUTION

@Sidhartha_1992

 

Try this one

 

Measure =
COUNTX (
    FILTER (
        SUMMARIZE (
            ALLSELECTED ( TableName ),
            TableName[Phone Number],
            TableName[Invoice Date]
        ),
        [Fraud or Valid] = "Fraud"
    ),
    1
)

View solution in original post

9 REPLIES 9
Greg_Deckler
Community Champion
Community Champion

I'm not sure I am following this, so are you saying that you only want the 123456 phone number counted once as a fraud instead of multiple times? If that is the case, then perhaps you could take the DISTINCTCOUNT of your phone numbers and subtract that from your COUNT of phone numbers and that would give you how many duplicates you have and then just subtract that from your fraud count?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

No,Sir i want the phone number 123456 to be counted as two.

The solution you provided gets me the distinct count of FRAUD numbers but i want the overall count of FRAUD numbers which should be 4 for the table provided above but your formula is giving the count as 3

@Sidhartha_1992

 

Try this one

 

Measure =
COUNTX (
    FILTER (
        SUMMARIZE (
            ALLSELECTED ( TableName ),
            TableName[Phone Number],
            TableName[Invoice Date]
        ),
        [Fraud or Valid] = "Fraud"
    ),
    1
)

Thanks a lot Zubair,it worked for me 🙂

@Sidhartha_1992

 

I noticed someone else started this post Smiley Tongue

 

Are you also @gowrishankar65 ?

 

 

Actually @gowrishankar65 is my senior,we both were trying to find out the solution to this problem so he posted it  🙂

Hi @Zubair_Muhammad,

 

We both are working on the same project. 😉

 

Thanks Zubair 🙂

 

Regards,

Gowrishankar

@gowrishankar65

 

This Measure should work!

Fraud Number =
CALCULATE (
    DISTINCTCOUNT ( CustomerInvoice[Phone Number] ),
    FILTER ( CustomerInvoice, [Fraud or Valid] = "Fraud" )
)

Good Luck! Smiley Happy

 

DistinctCount Filter Measure.png 

 

Zubair_Muhammad
Community Champion
Community Champion

@gowrishankar65

 

Try with following

 

Measure =
COUNTX (
    FILTER ( ALLSELECTED ( TableName[Phone Number] ), [Fraud or Valid] = "Fraud" ),
    1
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors