In or Out

Flopem123

New Member
Joined
Aug 31, 2020
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone,

I have a spreadsheet with around 10 individual sheets and each of these sheets records the times of an individual. On these sheets there are 5 IN times and 5 OUT times. This allows people to clock in and out multiple times during the day if they wish.

To make things more manageable I would like a sheet which will tell me who's in and who's out. I have looked at the IF Blank function but I think I might be going down the wrong path as it needs to look at multple cells but only if the IN has been completed.

DayInOutIn2Out2In3Out3In4Out4In5Out5
Monday07:4511:3512:2016:00
Tuesday07:4011:3512:2016:00
Wednesday07:4011:4012:2516:05
Thursday07:4011:4012:2516:05
Friday07:4509:1009:2513:0013:5016:00



HJ IN
HK OUT
PL IN
FJ IN
TY IN

Any help would be much appreciated

Thanks
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Assuming your data starts at A2 you could use this formula

=IF(MOD(COUNTBLANK(B2:K2),2)=0,"OUT","IN")
 
Upvote 0
Or if the in/out times are actual times (numerical) you could also use this variation
=IF(MOD(COUNT(B2:K2),2),"IN","OUT")
 
Upvote 0
Glad you got a successful outcome. Thanks for the follow-up. :)
 
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

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