First, what I provided is an array formula and as I have mentioned it must be confirmed by pressing ctrl+shift+enter rather than just enter. So you copy my formula, paste the formula into the desired cell, and instead of just pressing Enter to confirm the formula you press Ctrl+Shift+Enter
If it really is simpler for you to use the formula you have, then yes you can do something like you are stating, but know if you change your ranges or anything it will be more complicated to update. If your ranges are anticipated to stay as small as you are stating right now, then this would not be too large of an issue, but you keep using etc, and ... I know you have stated that the ellipses have no bearing on the formula, but I get the feeling there is more to this than you are stating here. At any rate if it really is easier for you, then yes you can do something like:
Code:
=If(B101 = "Tuesday",Sum(b103,-b102,b105,-b104,b107,-b107),"")
I am just now going to explain to you what my formula did
Code:
=IF(B101="Tuesday",SUM(IF(MOD(ROW(B102:B107),2)=0,-B102:B107,B102:B107)),"")
it first checks to see if B101 is Tuesday, if it is then you go to the sum section of the forumula: It looks at the entire range and determines if the row that it is looking at is odd or even, if it is even then it uses the negative value of the cell, if it is odd it uses the positive value of the cell thus transferring the positive or negative values automatically in whatever range you decide to use, you don't have to go through the work of determining it. Again this is only truly necessary if you could change the range, or the range becomes pretty large. It is much easier to write:
Code:
=IF(B101="Tuesday",SUM(IF(MOD(ROW(B102:B121),2)=0,-B102:B121,B102:B121)),"")
than to try to figure that out
Code:
=If(B101 = "Tuesday",Sum(B103,-B102,B105,-B104,B107,-B106,B109,-B108,... , B121,-B120)
As far as your formula, I don't believe you should need to use the text option unless there is something strange about your time entry (which certainly can occur). However in most cases with time you can add and subtract normally and the format the cell to [h]:mm:ss. Just an aside.