Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I want to calculate the number of unique dates from a given date until today. Does anyone know how I can achieve this?
Hi @Anonymous ,
Does your problem have been solved? If it is solved, please mark a reply which is helpful to you.
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
Hi @Anonymous ,
You can create a Calendar table in Power BI using your START DATE and END DATE. Something like below:
CALENDAR(DATE(2021, 1, 1), DATE(2021, 6, 1))
You can check more details here: https://docs.microsoft.com/en-us/dax/calendar-function-dax
Thanks,
Pragati
Hi @Pragati11, I already have a calendar/date table. I want to see how many days an employee has worked, by checking the distinct dates that occur in the source file until today.
Hi @Anonymous ,
Not sure if your question was clear in your query.
Please add more details on it like sample data input file and expeted output.
Thanks,
Pragati
Let's say this is the data.
| Name | Date |
| X | 26-6-2021 |
| Y | 27-6-2021 |
| Z | 29-6-2021 |
| X | 20-7-2021 |
| Y | 23-7-2021 |
| Z | 24-7-2021 |
I want to count the the number of unique dates for X, Y or Z from the first available date until today.
Hi @Anonymous ,
Try the following formula:
Measure =
COUNTROWS(
DATESBETWEEN(
'calendar'[Date],
MIN('Table'[Date]),
TODAY()
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Counting unique dates against a name is easy as shown below:
As you haven't attached the expected output along with the input, I will ask again what do you mean by - from the first available date until today ?
Thanks,
Pragati
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 21 | |
| 20 | |
| 12 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 41 | |
| 36 | |
| 35 |