wow, complicated

mindfullsilence

New Member
Joined
Apr 22, 2008
Messages
5
Hello everyone, new member here, how are all of you?

I need excel to look for a number in several ranges and return the number of occurrences that number is found. It's for a work schedule.

Example:
................Wednesday..............
cell..|.......A.........|.......B.......|
1.....|...Time in:....|...7:00 am..|
2.....|...Tim Out:...|..10:00 am.|
3.....|...Time in:....|...7:00 am..|
4.....|...Tim Out:...|..10:00 am.|
5.....|...Time in:....|..10:00 am.|
6.....|...Tim Out:...|...3:00 pm..|

I would need excel to test the ranges for "Time In" and "Time Out" and see if, say, 9:00 AM fell inside the range, and because it does, it would give me a "2." one for B1:B2, and another for B3:B4. After testing B5:B6 it wouldn't add anything because 9:00 AM does not fall between 10:00 AM and 3:00 PM.

I need it to test about 20 of these ranges and tell me how many times "9:00 am" exists.

I have to have this formula for every hour of the day from 7am - 2am. And for each day of the week, so I'm hoping it's simple. :eek:

Any ideas?

btw, I have no idea about macros or [COLOR=blue ! important][FONT=Verdana,Helvetica,sans-serif][COLOR=blue ! important][FONT=Verdana,Helvetica,sans-serif]vba[/FONT][/FONT][/color][/color] so I'm hoping this is possible with a formula. I'm definitely not an expert but I'm a little above average on formulas I think.

I'm trying to be as clear as possible without implying that I have little confidence all of you, but I've posted on a couple other forums to no avail. Perhaps I'll strike gold here. If it would help I can post a link to download my file I need this for.

Thanks in advance. :)
 
You probably get #NAME? error because ISODD and ISEVEN are Analysis ToolPak functions. You'll get that error if the add-in isn't installed

....but you can't use those here anyway because they only work with single values not ranges.

You can use MOD function instead, note you only have to check one range because if E5:E35 is odd then the corresponding cell in E6:E36 must be even....therefore you can use

=SUMPRODUCT(($E5:$E35<=P24)*($E6:$E36>=P24)*(MOD(ROW($E5:$E35)-ROW($E5),2)=0))

Note: you need to continue to show all times after midnight as on the next day otherwise this formula won't function correctly....
 
Last edited:
Upvote 0

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
iliace, that formula, after adjusting cell numbers to fit my file, gave me a #name? error.

I have it setup like this now...

"=SUMPRODUCT(--($E$5:$E$35<=P24),--($E$6:$E$36>=P24),--ISODD(ROW($E$5:$E$35)))"

Where E5 is the First Time In and E35 is the last Time In, E6 is the first Time Out and E36 is the last Time Out. P24 is where I have the time I'm looking for.

any ideas?

Yeah,

I did this in Excel 2007, which has the ISEVEN and ISODD functions; in previous versions, you have to install analysis toolpak to get them. This will work:

Code:
=SUMPRODUCT(--($E$5:$E$35<=P24),--($E$6:$E$36>=P24),MOD(ROW($E$5:$E$35),2),1-MOD(ROW($E$6:$E$36),2))
However, looking at your spreadsheet, I don't see where the hour value is in P24. The number should be a timeserial value, not an hour. Excel treats 1 as 24 hours, therefore 1 hour is 1/24. The range in O14:AG14 will not work as is.
 
Upvote 0
iliace, that formula, after adjusting cell numbers to fit my file, gave me a #name? error.

I have it setup like this now...

"=SUMPRODUCT(--($E$5:$E$35<=P24),--($E$6:$E$36>=P24),--ISODD(ROW($E$5:$E$35)),--ISEVEN(ROW($E$6:$E$36)))"

Where E5 is the First Time In and E35 is the last Time In, E6 is the first Time Out and E36 is the last Time Out. P24 is where I have the time I'm looking for.

any ideas?

Yeah,

I did this in Excel 2007, which has the ISEVEN and ISODD functions; in previous versions, you have to install analysis toolpak to get them. This will work:

Code:
=SUMPRODUCT(--($E$5:$E$35<=P24),--($E$6:$E$36>=P24),MOD(ROW($E$5:$E$35),2))

However, looking at your spreadsheet, I don't see where the hour value is in P24. The number should be a timeserial value, not an hour. Excel treats 1 as 24 hours, therefore 1 hour is 1/24. The range in O14:AG14 will not work as is.
 
Upvote 0

Forum statistics

Threads
1,216,066
Messages
6,128,571
Members
449,458
Latest member
gillmit

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