Excel Formula to determine if cells contain certain data

C

C Anderson

Can anyone help me, I am really in need of a formula on how to deal with the
following setup:

A. Over various worksheets within my Workbook I am entering a Y or N.
B. On my totals page I need to be able to capture if a N entry has been
made by showing No.
C. If no N entries have been made I do not want to have anything shown.

Is there any formula that I can use to show this.
 
B

Bob Phillips

No need for =n, n suffices,

=IF(COUNTIF(range,"n"),"No","")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top