+ Reply to Thread
Results 1 to 8 of 8

error.:Please help!

  1. #1
    Scoooter
    Guest

    error.:Please help!

    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


  2. #2
    Forum Contributor
    Join Date
    06-01-2006
    Posts
    324
    =IF(AR2="closed", "Not Required", IF(AK3<=5,"",IF(AK3<=10,"Almost
    Due",IF(AK3<=15,"Overdue",IF(AK3>15,"Very Overdue")))))
    Last edited by Bearacade; 06-13-2006 at 12:15 PM.
    Google is your best friend!

  3. #3
    Paul Mathews
    Guest

    re: error.:Please help!

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

    "Scoooter" wrote:

    > 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
    >
    >


  4. #4
    Toppers
    Guest

    re: error.:Please help!

    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


    "Scoooter" wrote:

    > 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
    >
    >


  5. #5
    CarlosAntenna
    Guest

    re: error.:Please help!

    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")))))

    --
    Carlos

    "Scoooter" <[email protected]> wrote in message
    news:[email protected]...
    > 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
    >




  6. #6
    CarlosAntenna
    Guest

    re: error.:Please help!

    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"))))

    --
    Carlos

    "CarlosAntenna" <[email protected]> wrote in message
    news:[email protected]...
    > 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")))))
    >
    > --
    > Carlos
    >
    > "Scoooter" <[email protected]> wrote in message
    > news:[email protected]...
    > > 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
    > >

    >
    >




  7. #7
    Scoooter
    Guest

    re: error.:Please help!

    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.

    Toppers wrote:

    > 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
    >
    >
    > "Scoooter" wrote:
    >
    > > 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
    > >
    > >



  8. #8
    Scoooter
    Guest

    re: error.:Please help!

    Thanks everyone, got it working.

    Scoooter

    Scoooter wrote:

    > 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.
    >
    > Toppers wrote:
    >
    > > 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
    > >
    > >
    > > "Scoooter" wrote:
    > >
    > > > 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
    > > >
    > > >



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1