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
Sohan
Helper III
Helper III

DISTINCTCOUNT of values YTD

I'm trying to find the number of days an employee has worked. I'm doing this by looking at our appointments and seeing which days an employee has had an appointment. I'm trying to count the number of unique dates up until today.

 

Does anyone know how to achieve this?

1 ACCEPTED SOLUTION

Hey @Sohan ,

 

then you just have to filter the date to be smaller or equal than today:

Days Worked until today = 
CALCULATE(
    COUNTROWS(
        VALUES( 'sample'[Date appointment] )
    ),
    'sample'[Date appointment] <= TODAY()
)

 

The results changes accordingly:

selimovd_0-1624974688144.png

 

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
 

 

View solution in original post

6 REPLIES 6
selimovd
Super User
Super User

Hey @Sohan ,

 

you can do a COUNTROWS of VALUES.

If you give some example data, I could give you a solution.

 

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
 

Hi @selimovd, thanks for your reply. Here is some sample data. Let me know if you have questions about it.

Hey @Sohan ,

 

the following measure should do it:

Days Worked =
CALCULATE(
    COUNTROWS(
        VALUES( 'sample'[Date appointment] )
    )
)

 

The result could then look like that:

selimovd_0-1624968739198.png

 

 

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
 

Hi @selimovd, thanks for your reply! I was able to achieve this, however I don't want future dates to be counted. I want the dates up until today to be counted.

Hey @Sohan ,

 

then you just have to filter the date to be smaller or equal than today:

Days Worked until today = 
CALCULATE(
    COUNTROWS(
        VALUES( 'sample'[Date appointment] )
    ),
    'sample'[Date appointment] <= TODAY()
)

 

The results changes accordingly:

selimovd_0-1624974688144.png

 

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
 

 

Thank you so much!

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.