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
grggmrtn
Post Patron
Post Patron

DISTINCTCOUNT per category, using relation

Hey everyone - having a bit of a problem getting the data I need. Here's my data:

PersonIDDateRegisteredStartDate
101-01-202001-01-2020
102-01-202003-02-2020
103-02-202001-01-2020
205-05-202008-12-2019
206-06-202001-01-2020
207-06-202003-05-2020
312-07-202007-10-2020
314-10-202001-01-2020
416-10-202001-01-2020

 

This table is related to my date table on DateRegistered using the date table, but I also have an inactive relation on StartDate to the date table, because I need to find out how many unique StartDate there are per month.

 

this is the DAX I'm using now:

 

 

 

Antal indskrivninger = 
CALCULATE(
    DISTINCTCOUNT('table'[StartDato]),
    USERELATIONSHIP('table'[StartDato],Dato[Dato])
    )

 

 

 

and it is giving me of course, a unique count of StartDate per month. So the result for the above data is 5.

 

BUT

 

What I NEED is for it to give me unique number of StartDate per PersonID - so the result for above should be:

PersonIDNumber of DistinctStartDato
12
23
32
41

and it should show me a total of 8, not 5.

 

Any idea how I can modify my DAX to give me the results I need?

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@grggmrtn 

Use your measure and modify as follows:

Antal indskrivninger = 

SUMX(
    SUMMARIZE(Table,Table[PersonID],Table[StartDate]),
    CALCULATE(
        DISTINCTCOUNT('Table'[StartDate]),
        USERELATIONSHIP(Table[StartDate],Dato[Date])
    )
)

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn




Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@grggmrtn 

Use your measure and modify as follows:

Antal indskrivninger = 

SUMX(
    SUMMARIZE(Table,Table[PersonID],Table[StartDate]),
    CALCULATE(
        DISTINCTCOUNT('Table'[StartDate]),
        USERELATIONSHIP(Table[StartDate],Dato[Date])
    )
)

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn




Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Beautiful @Fowmy - thanks!

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.