Hi Sally; I got this formula to work fine-- but I will break it down
so you know what components it needs;
anything in "" is going to be written on the screen like that. So "("
just appears as a ( in the formula result. This formula is simple, it
uses the countif function other people wrote about --
countif(a1:a10,"*reject*") gives you the value you are looking for.
The rest is just TEXT (i.e. anything between quotes) to get it to look
the way you've requested. Any text you add in this way needs to have a
'&' in front of it unless it starts the formula (as the one I gave you
shows-- there is no & in front of the FIRST quotes, but there is in
front of other quotes and the function itself).
If you can get =countif(a1:a10, "*reject*") to return the number,
start with that. Then just add the TEXT around the formula
="(" & {the countif formula} &") Reject"
-- make sure you are pasting this in the formula bar and not right on
the cell, and delete any spaces that may appear after it. it should be
on 1 line.
-- written again---
="("&Countif(a1:a10,"*reject*")&") Reject"
Just make sure there are an even number of quotes in the formula, and
there shouldnt be a problem.