Conditions with IF statement

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

Guest

Dear Excel(lent) users,

I am processing the following:

When a certain incident is logged, I want to know how many times it 'hops'
(no reason to go into details what bounces means).
I have the following columns:
Column A Date of entry
Column B Date of closure
Column C Date how many times it hops
Column D Yes/No validation field to indicated it hopped

If an incident hops I have to enter the number of hops. Now In Column D, I
want the spreadsheet to automatically fill in Yes or No. The condition is
that B should be filled and C should be 0. If that is the case D should have
no and if C is higher than 0 yes should be filled. If B is not filled,
nothing should be done.

Please be aware that I have entered a validation list on Column D, so that
whenever you press on a field in D, you get to choose either yes or no.

I came up with this: =IF(AND(B2<>"";C2=0);"No";IF(C2>0;"Yes")) But it does
not work.

Please help me.
 
Try =IF(B2<1,"",IF(C2>0,"Yes","No"))
But why use a validation when you are using a formula?
best wishes
 

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