+ Reply to Thread
Results 1 to 5 of 5

Cell formula where result to be Positive only

  1. #1
    Freddie
    Guest

    Cell formula where result to be Positive only

    Hi: Can anybody help a not very sophisticated used.
    I need to create a formula such as A1-4500*11% where the answer is
    positive. if not the answer is 0.

    Example A1 =5000 therefore 500 @11%=55
    Example A1=4000 therefore minus figure answer required is 0


  2. #2
    PCLIVE
    Guest

    Re: Cell formula where result to be Positive only

    Try this:

    =IF((A1-4500)*11%<0,0,(A1-4500)*11%)

    HTH,
    Paul

    "Freddie" <[email protected]> wrote in message
    news:[email protected]...
    > Hi: Can anybody help a not very sophisticated used.
    > I need to create a formula such as A1-4500*11% where the answer is
    > positive. if not the answer is 0.
    >
    > Example A1 =5000 therefore 500 @11%=55
    > Example A1=4000 therefore minus figure answer required is 0
    >




  3. #3
    Dave Peterson
    Guest

    Re: Cell formula where result to be Positive only

    =max(0,a1-4500)*11%

    is another way.



    Freddie wrote:
    >
    > Hi: Can anybody help a not very sophisticated used.
    > I need to create a formula such as A1-4500*11% where the answer is
    > positive. if not the answer is 0.
    >
    > Example A1 =5000 therefore 500 @11%=55
    > Example A1=4000 therefore minus figure answer required is 0


    --

    Dave Peterson

  4. #4
    Ron Coderre
    Guest

    RE: Cell formula where result to be Positive only

    Try something like this:
    For a value in A1
    B1: =MAX((A1-4500)*11%,0)

    Does that help?

    ***********
    Regards,
    Ron

    XL2002, WinXP-Pro


    "Freddie" wrote:

    > Hi: Can anybody help a not very sophisticated used.
    > I need to create a formula such as A1-4500*11% where the answer is
    > positive. if not the answer is 0.
    >
    > Example A1 =5000 therefore 500 @11%=55
    > Example A1=4000 therefore minus figure answer required is 0
    >
    >


  5. #5
    Freddie
    Guest

    Re: Cell formula where result to be Positive only

    Thanks, works a treat


+ 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