AND is be used as below..all the conditions inside braces ()
=IF(AND(C18=C20,C18=C16),1,0)
Here even if these cells are blank; it will return 1. If you want to avoid
this add one more condition within AND...
=IF(AND(C18<>"",C18=C20,C18=C16),1,0)
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.