Hector,
Thank you for your reply. I'm sorry that I was not very clear in
describing my request for help. When I used Edit|Cut on a selection in the
range I've described, it cuts (and pastes) everything (formatting,
references, number formats, etc.) this is not the behavior I desired. When I
used the term delete I should have said Edit|Cut. Using the delete key on the
keyboard amounts to an Edit|Clear|Contents which produces acceptable
behavior. So, what I should really have asked was "How do I disable the
"Edit|Cut / Edit|Paste" operation. I have found a solution to this problem
with the help of a posting at MrExcel Forum. This solution works for this
situation because I have no use for Cut/Paste on this sheet but it still
allows Copy/Paste.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Application.CutCopyMode = xlCut Then
Application.CutCopyMode = False
Application.CellDragAndDrop = False
End If
End Sub
Regarding your suggestion for a revised formula in my total cell, I am
getting ready to try your suggestion of a revised formula as soon as I work
my way through it and figure out what it does, but a thought occured to me
that I could simply count the number of cells with a value and those with no
value and if they are not equal then I have an error which I could then
indicate. This would probably allow me to put In/Out pairs in arbitrary
positions. (I think ;-)
Thanks for your help, I appreciate it very much,

Jeff Higgins