Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a list of tasks in my database with different start dates and required finish dates organized in two columns. For each column, I want to create a new column to capture the "MAX", "MIN", "Average" date by Task ID for scheduled dates after the current year. Keep in mind that the dataset has millions of records that date back to 10 years but I want to create a Gantt Chart to capture the "WORKDAY" duration for the current year only.
Hi @mdrammeh,
Please create a calendar table, create a flag column if the date is workday. Then you can use count workdays.
You want to calculate the "WORKDAY" duration for the current year only, so use the following formula to create a calendar table.
Calendar = CALENDAR ( DATE(2017,1,1), MAX ( FactTable[Finish date] ) )
Then add a flag column using the formula.
WorkingDay_Mark = VAR WeekDayNum = WEEKDAY ( Calendar[Date] ) RETURN ( IF ( OR ( OR ( WeekDayNum = 1, WeekDayNum = 7 ), RELATED ( Holidays[Date] ) <> BLANK () ), FALSE (), TRUE () ) )
Finally, calculate the count of workdays.
WorkingDay_Num = COUNTROWS ( FILTER ( Calendar, AND ( AND ( Calendar[Date] >= FactTable[Start date], Calendar[Date] <= FactTable[End date] ), Calendar[WorkingDay_Mark] ) ) )
If you have any other problem, please feel free to ask.
Best Regards,
Angelia
Hi Angela,
Could you share a little more detail about how you did this in Power Query? I have ben getting an error message for each time I try. I copied and pasted the formula into the Query Editor but it didn't work.
Thanks,
M
I am trying to figure out how to calculate working days between dates power query by hour, day, month, and year in a single month. Also is the table field is blank for any of these fields, and want power query to return a blank cell for the duration
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
89 | |
52 | |
45 | |
39 | |
38 |