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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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