Do I understand you to say that G25:G38 contain keyed in data only?
AND, you want the data to remain there?
If that's the case, then let the formula in G39 do the decision making, as
to whether or not to include the individual cells into the total.
Try either of these in G39:
=SUMIF(D25

38,"<>bounced",G25:G38)
OR
=SUMPRODUCT((D25

38<>"bounced")*G25:G38)
You could get real fancy and also try conditional formatting in ColumnG, so
that when "bounced" appears in ColumnD, the corresponding cell in ColumnG
could turn Red, allowing you to easily keep track of exactly which numbers
are not included in the sum.
Select G25:G38, then:
<Format> <ConditionalFormat>
Change "Cell Value Is" to "Formula Is",
And enter this formula:
=D25="bounced"
Then click on "Format", and choose RED and Bold,
Then <OK> <OK>.
--
HTH,
RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
G25 through G38 are payments received by clients. I need
to be able to leave that payment as it was originaly
entered as a record. If My accountant sees that that
payment, days later, bounces, I want him to be able to
enter "bounced" in Col. D for the appropriate row.
So "bounced" would be entered in D25 if G25 ($500)
bounced, which I then need to be reflected in the total
showing in G39. This IF "BOUNCED" needs to repeat itself
for each row 25-38 to give me a real total on G39 for all
payements in. Also, formulas in other cells reference the
number in G39...
Corey