Comparing Cells

  • Thread starter Thread starter gdeleos
  • Start date Start date
G

gdeleos

I have four columns
A1=Name
B1=Y
C1=
D1=Y

(Y mean yes and blank means no in celss B-D)

What i would like to do is for excel to compare cells B, C, and D an
return the name in A1 if B1 is blank and there is a Y in C1.

Please help...Thanks
 
Try to use the following formula:

=If(and(B1="",C1="Y"),A1,"")

(There is no comparison for cell D1 in your question)

--
Best regards,
---
Yongjun CHEN
=================================
XLDataSoft - Data Analysis Expert, Excel/VBA Specialist
- - - - www.XLDataSoft.com - - - -
Free Excel-Based Data Processing Tool is Available for Download
=================================
 

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