Please help!

  • Thread starter Thread starter Scoooter
  • Start date Start date
S

Scoooter

Dear All

I am trying to have the following argument state that IF
AR2="closed",Then return "Not Required" but I keep getting an error.
Would anyone be able to help me with this?

=IF(AK3<=5,"",IF(AK3<=10,"Almost
Due",IF(AK3<=15,"Overdue",IF(AK3>15,"Very Overdue"))))

Thank you
Scoooter
 
=IF(AR2="closed","Not Required",IF(AK3<=5,"",IF(AK3<=10,"Almost
Due",IF(AK3<=15,"Overdue",IF(AK3>15,"Very Overdue")))))
 
Do you mean this?

=IF(AR2="Closed","Not required",IF(AK3<=5,"",IF(AK3<=10,"Almost
Due",IF(AK3<=15,"Overdue",IF(AK3>15,"Very Overdue")))))


AR2 is not referred to in your original formula
 
You need to wrap another IF around what you already have.

=if(AR2="closed","Not Required",IF(AK3<=5,"",IF(AK3<=10,"Almost
Due",IF(AK3<=15,"Overdue",IF(AK3>15,"Very Overdue")))))
 
Also your last IF is incomplete, the third argument is missing. Try this
one without the last IF, using "Very Overdue" as the false argument in the
IF before.

=if(AR2="closed","Not Required",IF(AK3<=5,"",IF(AK3<=10,"Almost
Due",IF(AK3<=15,"Overdue","Very Overdue"))))
 
Thanks for that. I obviously have not thought about this to the degree
that I should have. It now works but throws up a 'False' if AR2=Open.
I need it to run through the argument as normal if AR2=Open but If
AR2=Closed then I need it to show "Not Required".

Thanks again.
 
Thanks everyone, got it working.

Scoooter
Thanks for that. I obviously have not thought about this to the degree
that I should have. It now works but throws up a 'False' if AR2=Open.
I need it to run through the argument as normal if AR2=Open but If
AR2=Closed then I need it to show "Not Required".

Thanks again.
 

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