Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hey folks,
I'm trying to create a column like the one to the right in the picture, where every line is a project and I need to add up everyone's work days YTD. If say, two projects have the same month and same person then only one would need to count to the YTD workdays. Any idea how to do this?
Thanks,
Pierre
Solved! Go to Solution.
Hello Pierre,
There could be better method but this DAX also works if you have a unique field the data set:
Distinct WD =
IF (
CALCULATE (
COUNTROWS ( Table1 ),
ALLEXCEPT ( Table1, Table1[Name], Table1[Date] ),
EARLIER ( Table1[Id] ) >= Table1[Id]
)
= 1,
[This Month],
0
)
Thanks,
Prakash
Hello Pierre,
The AllEXCEPT gives the all rows of the table (for each Name and Date pair) and earlier gives the current row.
When we count all Id where Name and Date is equal AND current Id is >= all Id, we are left with the correct count.
The >= might be confusing. Please see below MSDN link where earlier has been described in detail:
https://msdn.microsoft.com/en-us/library/ee634551.aspx
Thanks,
Prakash
Hello Pierre,
There could be better method but this DAX also works if you have a unique field the data set:
Distinct WD =
IF (
CALCULATE (
COUNTROWS ( Table1 ),
ALLEXCEPT ( Table1, Table1[Name], Table1[Date] ),
EARLIER ( Table1[Id] ) >= Table1[Id]
)
= 1,
[This Month],
0
)
Thanks,
Prakash
Hey Prakash could you explain to me how the Earlier function works in this scenario?
Thanks,
Pierre
Hello Pierre,
The AllEXCEPT gives the all rows of the table (for each Name and Date pair) and earlier gives the current row.
When we count all Id where Name and Date is equal AND current Id is >= all Id, we are left with the correct count.
The >= might be confusing. Please see below MSDN link where earlier has been described in detail:
https://msdn.microsoft.com/en-us/library/ee634551.aspx
Thanks,
Prakash
Awesome thanks Prakash!
Thanks man you're a legend
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
6 | |
4 | |
2 | |
2 |
User | Count |
---|---|
4 | |
3 | |
3 | |
3 | |
3 |