Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello,
I'm new to power BI, and im trying to create a new calculated column that can calculate the number of working days with decimals between two dates. In excel would be something like this:
=(NETWORKDAYS(Start_date,End_Date,0)-1)+MOD(End_Date,1)-MOD(Start_Date,1)
i have my dates formatted like this
Entered Queue | Modified On (Object) (Case) |
4/6/18 10:21 | 4/11/18 11:00 |
I hope you can help me on this one, thanks!
Solved! Go to Solution.
@jcardea Hello
Please try the following calculated column
=COUNTROWS(FILTER(ADDCOLUMNS(CALENDAR(datestable[Enter],datestable[Modified]),"Day",WEEKDAY ([Date],1)),[Day]<>1&& [Day]<>7))+INT(datestable[Enter])+1-datestable[Enter]+datestable[Modified]-INT(datestable[Modified])-2
Please replace
The formula considers Sat and Sun as weekends
@jcardea Hello
Please try the following calculated column
=COUNTROWS(FILTER(ADDCOLUMNS(CALENDAR(datestable[Enter],datestable[Modified]),"Day",WEEKDAY ([Date],1)),[Day]<>1&& [Day]<>7))+INT(datestable[Enter])+1-datestable[Enter]+datestable[Modified]-INT(datestable[Modified])-2
Please replace
The formula considers Sat and Sun as weekends
This function is awesome and works great for calculating turnaround times in my reports.
I'm tyring to generate another report where I would like turnaround time involved using this formual but I will also have cases where closed date has not yet been populated. Due to this I'm receiving an error. .
Is there any way to use this formula but filter for just for closed values? I have a column that identifies if a row has been closed or not.
You are a legend!!! This works for me, thanks so much. Im trying to usnderstand the following part of the formula
........."Day", WEEKDAY ( [Date], 1 )
That is adding a number to this virtual table containing the day number so we can filter it out however where is "[date]" coming from and is it based on the first or 2nd date used int he formula?
Also is the formula basically working out whole days excluding weekends first, then adding in the fraction of a day?
Hi,
I trieded but there was an error saying "The start date in Calendar function can not be later than the end date." and I'm sure that none of the starting dates are later than the end dates...
thanks!
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
96 | |
91 | |
82 | |
69 |
User | Count |
---|---|
159 | |
125 | |
116 | |
111 | |
95 |