Urenstaat

melroyvdberg

New Member
Joined
Feb 7, 2007
Messages
1
Hallo,

Ik heb reeds voor mezelf een urenstaat proberen te maken, maar ik blijf nu op een bepaald punt hangen.

Mijn vraag:

In Kolom c worden de begintijden in gevuld, en in kolon d de eindtijden.Het berekenen van deze uren in kolom f gaat goed, alleen nou wil ik in kolom e, alle uren weg schrijven die na 8:00 werken gemaakt worden. Dus C.8:00 - D.20:00 = F.12:00 alleen in F moet nu komen staan F.8:00 en in E.4:00

Ook had ik de vraag stel het zijn avond en nacht uren..hoe doe ik deze automatische laten uitrekenen? omdat als je 20:00 - 08:00 in toetst komt er #naam te staan inplaats van 12:00

Tevens zou ik als ik vaste tijden in toest bijvoorbeeld 15:00 - 23:00 in een kolom de avond uren neer willen zetten.dit zijn er in dit geval 5:00

C.15:00 - D:23:00 = F.8:00 en dan in G.5:00

Ik hoop dat iemand me hier mee kan helpen, en dat de vraag goed overkomt!?

Bijvoorbaad dank,

Melroy
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.

Hallo Melroy

Ik ben even aan het stoeien voor je geweest en de volgende oplossing bedacht, ik ben benieuwd wat je er van vind?

Zet in

Cel F2: 8
Cel G2: 24

Cel F3:
IF(C3<D3;IF(D3-C3<F$2;D3-C3;F2);IF(G2-C3+D3<F$2;G2-C3+D3;F2))

Cel G3:
=IF(C3<D3;IF(D3-C3>F$2;D3-C3-F2;0);IF(G2-C3+D3>F$2;G2-C3+D3-F2;0))
Allen met een celformaat van UU:MM

De formules rekenen alsvolgt
Cel F3
Eerst kijken of de werktijd eindigt na 24:00 uur
zo nee dan kijken of dit minder is dan 8:00 uur
zo nee dan dit getal plaatsen zo ja dan 8 in vullen.

Eindigt de tijd wel na 24:00 uur dan de begintijd van 24 af trekken en de eind tijd daar weer bij optellen. dan weer verder als hierboven.

Cel G3
kijk of tijd meer of minder is als 8 uur is dit minder zet het dan op 0:00 uur is het meer trek er dan eer 8:00 af en noteer.
 
Upvote 0
Cel F3:
IF(C3#D3;IF(D3-C3#F$2;D3-C3;F2);IF(G2-C3+D3#F$2;G2-C3+D3;F2))

Cel G3:
=IF(C3#D3;IF(D3-C3>F$2;D3-C3-F2;0);IF(G2-C3+D3>F$2;G2-C3+D3-F2;0))

Om een voor mij onbekende reden komen de '<' tekens niet door in de formules. Ik heb ze daarom veranderd in '#' .

Als je ze gaat gebruiken moet je de '#' weer in '<' veranderen
 
Upvote 0
Not sure if this helps, but if you need to subtract times that may cross midnight, this is the easiest way:
Code:
=EndTime-StartTime+(EndTime<StartTime)

Note that use of the CODE tags helps with the issue of the board software trying to parse the > and < signs when you have them in equations.
 
Upvote 0

Forum statistics

Threads
1,223,937
Messages
6,175,511
Members
452,650
Latest member
Tinfish

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