Calculation of work experience

srdjan013

New Member
Joined
Aug 14, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Dear All,

i need help. I need to calculate the total length of service for all periods collectively. What I was able to do with the DATADIF formula was to calculate the difference between the start data and the end data. This is found in cells F4, F5, F6. In cell F15, I need to have the total sum of work experience. Also, in cells C15, D15 and E15 I need to have a total sum in years, months and days so that I can convert days into months, months into years.
I hope I explained it well.
Please help. Thank you
 

Attachments

  • WORK EXPERIENCE.jpg
    WORK EXPERIENCE.jpg
    134.2 KB · Views: 15

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Try:
Book1
ABCDE
1
2
3YearMonthDays
41827
5164
6399
7
8
9
10
11
12
13
14
15Total7010
Sheet1
Cell Formulas
RangeFormula
C15C15=SUM(C4:C6)+QUOTIENT(SUM(D4:D6)+QUOTIENT(SUM(E4:E6),30),12)
D15D15=MOD(SUM(D4:D6)+QUOTIENT(SUM(E4:E6),30),12)
E15E15=MOD(SUM(E4:E6),30)
 
Upvote 0
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: Calculation of work experience
There is no need to repeat the link(s) provided above but if you have posted the question at other places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0
In C4
Excel Formula:
=DATEDIF(A4:A11,B4:B11,"Y")
In D4
Excel Formula:
=DATEDIF(A4:A11,B4:B11,"YM")
In E4
Excel Formula:
=DATEDIF(A4:A11,B4:B11,"Md")
In F4
Excel Formula:
=IF(C4:C11=0,"",C4:C11&" Years ")&IF(D4:D11=0,"",D4:D11&" Months ")&IF(E4:E11=0,"",E4:E11&" Days")
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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