Excel Formula to determine if cells contain certain data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
One way
=IF(COUNTIF(Range,"=n"),COUNTIF(Range,"=n"),"")

HTH
Michael Mitchelson
 
No need for =n, n suffices,

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

--

HTH

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top