Checking Time blocks

Gaveon

New Member
Joined
Aug 11, 2016
Messages
4
Hello,

im trying to create a check for a bunch of time blocks for staff ID

Staff Start End Total Time
1111 8:30 9:30 0:30 "Under 1 hour"
1111 10:00 10:30 0:30 "OK"
1111 10:30 11:00 0:30 "OK"
1111 12:00 13:00 1:00 "OK"

If staff work a block less than an hour they will be paid remaining time
staff work with clients in that time - some clients have a couple service back to back such as row 2 & 3

i want to create a check where if time is less than 1 hour it will alert me
but ignore records that have a connecting time

I'm guessing i will just need a complex IF statement

Thank you for an help
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Starting off fairly simple, see if this works (assuming total time in column D)

=IF(OR(D2>=(1/24),C2=B3,C1=B2),"OK","Under 1 hour")

This will not pick up blocks that are under 1 hour, i.e. 2 back to back rows of 15 minutes each no additional row(s) to increase it further. If individual rows of less than 30 minutes are possible then this will need to be allowed for with something a little more complex.
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

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