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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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