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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jcardea
Regular Visitor

Network days with decimals

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 QueueModified On (Object) (Case)
4/6/18 10:214/11/18 11:00

 

I hope you can help me on this one, thanks!

1 ACCEPTED SOLUTION
ChandeepChhabra
Impactful Individual
Impactful Individual

@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

  1. datestable by the name of your own table
  2. Enter column by start date
  3. Modified column by end date

The formula considers Sat and Sun as weekends

 

View solution in original post

5 REPLIES 5
ChandeepChhabra
Impactful Individual
Impactful Individual

@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

  1. datestable by the name of your own table
  2. Enter column by start date
  3. Modified column by end date

The formula considers Sat and Sun as weekends

 

@ChandeepChhabra 

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!

@jcardea Can you please share your data ? I'll see what's going wrong

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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