Perhaps its just me but assuming that:
> First row of data entry strings from B8 to I8
> Data rows run from row 8 to row 21
means numbers and does not actually mean strings, then try in B22
=IF(COUNT(B8:B21)=14,SUM(B8:B21),"")
and copy across to I22. In L22 enter:
If it may be that not all cells in B8:B21 will be filled in then use:
=IF(COUNT(B8:B21),SUM(B8:B21),"")
If you really do mean that B8:I21 will have strings then in B22 use:
=IF(COUNTA(B8:B21),COUNTA(B8:B21),"")
In either case in L22 enter:
=IF(AND(COUNT(B22:I22)=8,COUNTA(J8:J21)<>14),"Fill in 'Projects'
Column",IF(AND(COUNT(B22:I22)=8,COUNTA(J8:J21)=14),SUM(B22:I22),""))
If I have not got it right then please do post back correcting my wrong
assumptions.

Signature
HTH
Sandy
In Perth, the ancient capital of Scotland
sandymann2@mailinator.com
Replace@mailinator.com with @tiscali.co.uk
> In response to Sandy's post:
>
[quoted text clipped - 44 lines]
>> > Thank you in advance for any advice or help--I'm a bit of a novice to
>> > this!
smistretta - 26 Apr 2006 19:03 GMT
Sandy-
Thank you so much for your help. I inserted the formula in all of the areas
that you said, but now I'm presented with a new problem: Instead of a number
in the Grand Total cell (L22), it says either 'true' or 'false.'
Is this a problem of using the logic formula? Any new suggestions?
Thank you again!!
> Perhaps its just me but assuming that:
>
[quoted text clipped - 71 lines]
> >> > Thank you in advance for any advice or help--I'm a bit of a novice to
> >> > this!