Anywhere you see this:
>=9
>=18
you're checking to make sure the hour is after 9am or after 6pm, respectively. This:
<9
<18
checks to make sure the hour is before 9am or before 6pm, respectively. So, if you change it to <22 instead, you will be OK. Also, you see this in the second formula:
+(9/24)
That works for 9am. So, if your Start hour changed to 8am, you'd adjust that to be +(8/24) respectively. You can of course simplify the fraction, but that makes future editing trickier.
***** note there was an error in the original second formula, which counted submissions during the 6pm hour - corrected below *****
I would recommend putting those two values in separate cells, and then address them, so you only have to change the formula in one place. I modified the original formulas for you as an example (moving everything over one column):
<b>Sheet1</b><br /><br /><table border="1" cellspacing="0" cellpadding="0" style="font-family:Calibri,Arial; font-size:11pt; background-color:#ffffff; padding-left:2pt; padding-right:2pt; "> <colgroup><col style="font-weight:bold; width:30px; " /><col style="width:84px;" /><col style="width:49px;" /><col style="width:58px;" /><col style="width:322px;" /></colgroup><tr style="background-color:#cacaca; text-align:center; font-weight:bold; font-size:8pt; "><td >*</td><td >C</td><td >D</td><td >E</td><td >F</td></tr><tr style="height:18px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >1</td><td style="font-weight:bold; ">*</td><td >*</td><td style="font-weight:bold; text-align:center; ">Average</td><td >*</td></tr><tr style="height:18px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >2</td><td >Earliest start</td><td style="text-align:right; ">9</td><td style="text-align:right; ">0:12</td><td ><--- not counting early/late submissions</td></tr><tr style="height:18px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >3</td><td >Latest stop</td><td style="text-align:right; ">18</td><td style="text-align:right; ">3:00</td><td ><--- rounding early/late submissions</td></tr></table><br /><table style="font-family:Arial; font-size:10pt; border-style: groove ;border-color:#00ff00;background-color:#fffcf9; color:#000000; "><tr><td ><b>Spreadsheet Formulas</b></td></tr><tr><td ><table border = "1" cellspacing="0" cellpadding="2" style="font-family:Arial; font-size:9pt;"><tr style="background-color:#cacaca; font-size:10pt;"><td >Cell</td><td >Formula</td></tr><tr><td >E2</td><td >{=AVERAGE(IF<span style=' color:008000; '>(<span style=' color:#0000ff; '>(HOUR<span style=' color:#ff0000; '>($A$2:$A$17)</span>>=$D$2)</span>*<span style=' color:#0000ff; '>(HOUR<span style=' color:#ff0000; '>($A$2:$A$17)</span><$D$3)</span>, $B$2:$B$17-$A$2:$A$17)</span>)}</td></tr><tr><td >E3</td><td >{=AVERAGE($B$2:$B$17-IF<span style=' color:008000; '>(HOUR<span style=' color:#0000ff; '>(--$A$2:$A$17)</span><9, INT<span style=' color:#0000ff; '>(--$A$2:$A$17)</span>+<span style=' color:#0000ff; '>(9/24)</span>, IF<span style=' color:#0000ff; '>(HOUR<span style=' color:#ff0000; '>(--$A$2:$A$17)</span>>=$D$3, ROUND<span style=' color:#ff0000; '>(--$A$2:$A$17, 0)</span>+<span style=' color:#ff0000; '>(9/24)</span>, --$A$2:$A$17)</span>)</span>)}</td></tr></table></td></tr><tr><td ><span style=' font-family:Arial,Arial; font-size:9pt; font-weight:bold;'>Formula Array:</span><span style=' font-family:Arial,Arial; font-size:9pt;'><br />Produce enclosing </span><span style=' font-family:Arial,Arial; font-size:9pt; font-weight:bold;'>{ }</span><span style=' font-family:Arial,Arial; font-size:9pt;'> by entering<br />formula with CTRL+SHIFT+ENTER!</span></td></tr></table>