+ Reply to Thread
Results 1 to 4 of 4

Conditional Formula help required

  1. #1
    TomGill
    Guest

    Conditional Formula help required

    I am looking for a single formula for excel 2003 to do the following:
    If A1=R then A10=400/0.99, If A2=H then A10=400/0.9 if neither is true then
    A10=400.

  2. #2
    bpeltzer
    Guest

    RE: Conditional Formula help required

    The formula goes in the cell where the result is to appear, A10 in your case.
    =if(A1="R",400/0.99,if(A2="H",400/0.9,400))


    "TomGill" wrote:

    > I am looking for a single formula for excel 2003 to do the following:
    > If A1=R then A10=400/0.99, If A2=H then A10=400/0.9 if neither is true then
    > A10=400.


  3. #3
    Bob Phillips
    Guest

    Re: Conditional Formula help required

    =IF(A1="R",400/0.99,IF(A"="H",400/0.9,400))

    and put that in A10

    --

    HTH

    Bob Phillips

    (replace xxxx in the email address with gmail if mailing direct)

    "TomGill" <TomGill@discussions.microsoft.com> wrote in message
    news:0936D013-E896-4DC7-B37B-53F52CD9FDAB@microsoft.com...
    > I am looking for a single formula for excel 2003 to do the following:
    > If A1=R then A10=400/0.99, If A2=H then A10=400/0.9 if neither is true

    then
    > A10=400.




  4. #4
    MyVeryOwnSelf
    Guest

    Re: Conditional Formula help required

    > I am looking for a single formula for excel 2003 to do the following:
    > If A1=R then A10=400/0.99, If A2=H then A10=400/0.9 if neither is true
    > then A10=400.



    One way is to put this in A10
    =400/IF(A1="R",0.99,IF(A1="H",0.9,1))



+ 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