Labor Days

jdecastro

New Member
Joined
Sep 22, 2010
Messages
13
Here in Colombia we work Saturdays!!!

I need a Formula to make up for the time worked without taking into account Sundays.

I can't use the formula of labor days with vacations, I need an elaborate formula

Thanks
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Example:

I worked from April 18th to April 25th

So How many days did I work? Monday through Saturday (6) and Monday (1)

Result: 7
 
Upvote 0
With start date in A1, end date in A2

=SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(A1&":"&A2)))>1))
 
Upvote 0
Example:

I worked from April 18th to April 25th

So How many days did I work? Monday through Saturday (6) and Monday (1)

Result: 7
One way...

A2 = start date
B2 = end date

=SUM(INT((WEEKDAY(A2-{2,3,4,5,6,7})+B2-A2)/7))
 
Upvote 0
Which version of Excel are you using? In Excel 2010 you can use NETWORKDAYS.INTL function, i.e.

=NETWORKDAYS.INTL(A2,B2,11)
 
Upvote 0

Forum statistics

Threads
1,224,507
Messages
6,179,172
Members
452,893
Latest member
denay

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top