help, schedule checking using sumproduct and the left function

Helenrich80

New Member
Joined
Sep 12, 2018
Messages
3
Hi,

I am trying add up the amount of times someone works between a certain times over the course of a month on a schedule.

For example how many time did they start between 5am and 9am so I have put in the below formula.

=SUMPRODUCT(--(AND((LEFT(B6:H6,2)>="05"),(LEFT(B6:H6,2)<"09"))))

However this returns a value error message on the range

If I change it to one cell range it works
=SUMPRODUCT(--(AND((LEFT(B6,2)>="05"),(LEFT(B6,2)<"09"))))
Clearly to do this over a full month for each day for each time range for several people will be very work heavy.

Can anyone help please??
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
AND doesnt produce arrays which is what you need here. Use multiplication. How are these times stored in the cell? Does LEFT(B6,2) produce "05" for example?
 
Upvote 0
There must be more data? Place an example here of what you want to calculate. That example doesnt seem to correlate to your sumproduct formula.
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,293
Members
449,077
Latest member
Rkmenon

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