+ Reply to Thread
Results 1 to 16 of 16

Help making Negative numbers to become zero

Hybrid View

  1. #1
    Registered User
    Join Date
    08-07-2006
    Posts
    3

    Help making Negative numbers to become zero

    I am going to try and make this as simple as possible. I have been working on an excel sheet and have been stumped with this problem:

    I am working with stock options. Therefore I must subtract the current stock price Cell C2, which has a value of 23 with the Options price which is D9, has a value of 34.79 then muliply it with the shares which is cell F9 which is 4000. So the formula that i have is (C2-D9)*F9 that gives me the sum which resides in cell I9(total outstanding profit).......This turns out to be a negative number. I want to make it so that if the sum of that formula produces a negative number, i want that negative number to just become a "0". Ive tried the IF function but could not produce any results. HELP ME PLEASE!!!!

  2. #2
    Registered User
    Join Date
    08-04-2006
    Posts
    36
    =IF((C2-D9)*F9<0,0,+(C2-D9)*F9)


    hth

  3. #3
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097

    Thumbs up

    Quote Originally Posted by jrabs12
    I am going to try and make this as simple as possible. I have been working on an excel sheet and have been stumped with this problem:

    I am working with stock options. Therefore I must subtract the current stock price Cell C2, which has a value of 23 with the Options price which is D9, has a value of 34.79 then muliply it with the shares which is cell F9 which is 4000. So the formula that i have is (C2-D9)*F9 that gives me the sum which resides in cell I9(total outstanding profit).......This turns out to be a negative number. I want to make it so that if the sum of that formula produces a negative number, i want that negative number to just become a "0". Ive tried the IF function but could not produce any results. HELP ME PLEASE!!!!
    Hi jrabs12,

    Try this formula

    =IF((C2-D9)*F9<=0,0,C2-D9)*F9

    This says at if your result is less than or equal to zero, display zero, otherwise result is positive

    oldchippy

  4. #4
    Registered User
    Join Date
    08-04-2006
    Posts
    36
    Quote Originally Posted by oldchippy
    Hi jrabs12,

    Try this formula

    =IF((C2-D9)*F9<=0,0,C2-D9)*F9

    This says at if your result is less than or equal to zero, display zero, otherwise result is positive

    oldchippy
    hate to say it but that won't work you've missed off various brackets...


    =IF((C2-D9)*F9<=0,0,(C2-D9)*F9)


    my formula doesn't need the "=<" as anything less will put a zero otherwise it does the original formula, you added an extra unecessary parameter.

  5. #5
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097

    Thumbs down

    Quote Originally Posted by mr_ben
    hate to say it but that won't work you've missed off various brackets...


    =IF((C2-D9)*F9<=0,0,(C2-D9)*F9)


    my formula doesn't need the "=<" as anything less will put a zero otherwise it does the original formula, you added an extra unecessary parameter.
    Hi mr ben,

    Thanks for pointing it out, sometimes to quick to respond and not checking!

    oldchippy

  6. #6
    Registered User
    Join Date
    08-04-2006
    Posts
    36
    oops double posting munkee
    Last edited by mr_ben; 08-07-2006 at 11:56 AM.

  7. #7
    Guest

    Re: Help making Negative numbers to become zero

    Hi

    Try this:

    =MAX(0,(C2-D9)*F9)

    Andy.

    "jrabs12" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am going to try and make this as simple as possible. I have been
    > working on an excel sheet and have been stumped with this problem:
    >
    > I am working with stock options. Therefore I must subtract the current
    > stock price Cell C2, which has a value of 23 with the Options price
    > which is D9, has a value of 34.79 then muliply it with the shares which
    > is cell F9 which is 4000. So the formula that i have is (C2-D9)*F9 that
    > gives me the sum which resides in cell I9(total outstanding
    > profit).......This turns out to be a negative number. I want to make it
    > so that if the sum of that formula produces a negative number, i want
    > that negative number to just become a "0". Ive tried the IF function
    > but could not produce any results. HELP ME PLEASE!!!!
    >
    >
    > --
    > jrabs12
    > ------------------------------------------------------------------------
    > jrabs12's Profile:
    > http://www.excelforum.com/member.php...o&userid=37194
    > View this thread: http://www.excelforum.com/showthread...hreadid=569032
    >




  8. #8
    Guest

    Re: Help making Negative numbers to become zero

    Hi

    Try this:

    =MAX(0,(C2-D9)*F9)

    Andy.

    "jrabs12" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am going to try and make this as simple as possible. I have been
    > working on an excel sheet and have been stumped with this problem:
    >
    > I am working with stock options. Therefore I must subtract the current
    > stock price Cell C2, which has a value of 23 with the Options price
    > which is D9, has a value of 34.79 then muliply it with the shares which
    > is cell F9 which is 4000. So the formula that i have is (C2-D9)*F9 that
    > gives me the sum which resides in cell I9(total outstanding
    > profit).......This turns out to be a negative number. I want to make it
    > so that if the sum of that formula produces a negative number, i want
    > that negative number to just become a "0". Ive tried the IF function
    > but could not produce any results. HELP ME PLEASE!!!!
    >
    >
    > --
    > jrabs12
    > ------------------------------------------------------------------------
    > jrabs12's Profile:
    > http://www.excelforum.com/member.php...o&userid=37194
    > View this thread: http://www.excelforum.com/showthread...hreadid=569032
    >




  9. #9
    David Biddulph
    Guest

    Re: Help making Negative numbers to become zero

    "jrabs12" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am going to try and make this as simple as possible. I have been
    > working on an excel sheet and have been stumped with this problem:
    >
    > I am working with stock options. Therefore I must subtract the current
    > stock price Cell C2, which has a value of 23 with the Options price
    > which is D9, has a value of 34.79 then muliply it with the shares which
    > is cell F9 which is 4000. So the formula that i have is (C2-D9)*F9 that
    > gives me the sum which resides in cell I9(total outstanding
    > profit).......This turns out to be a negative number. I want to make it
    > so that if the sum of that formula produces a negative number, i want
    > that negative number to just become a "0". Ive tried the IF function
    > but could not produce any results. HELP ME PLEASE!!!!


    =MAX((C2-D9)*F9,0)
    --
    David Biddulph



  10. #10
    David Biddulph
    Guest

    Re: Help making Negative numbers to become zero

    "jrabs12" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am going to try and make this as simple as possible. I have been
    > working on an excel sheet and have been stumped with this problem:
    >
    > I am working with stock options. Therefore I must subtract the current
    > stock price Cell C2, which has a value of 23 with the Options price
    > which is D9, has a value of 34.79 then muliply it with the shares which
    > is cell F9 which is 4000. So the formula that i have is (C2-D9)*F9 that
    > gives me the sum which resides in cell I9(total outstanding
    > profit).......This turns out to be a negative number. I want to make it
    > so that if the sum of that formula produces a negative number, i want
    > that negative number to just become a "0". Ive tried the IF function
    > but could not produce any results. HELP ME PLEASE!!!!


    =MAX((C2-D9)*F9,0)
    --
    David Biddulph



  11. #11
    Registered User
    Join Date
    08-07-2006
    Posts
    3
    None of these options are working, it still just continues to show me my negative result.

  12. #12
    Registered User
    Join Date
    08-04-2006
    Posts
    36
    it worked fine for me..... (well mine did didn't look at the others)

  13. #13
    Guest

    Re: Help making Negative numbers to become zero

    Hi

    I can't see any way that the MAX formula can give you a negative number.
    There must be something we're missing out on here! Have you told us the full
    story? ;=)

    Andy.

    "jrabs12" <[email protected]> wrote in
    message news:[email protected]...
    >
    > None of these options are working, it still just continues to show me my
    > negative result.
    >
    >
    > --
    > jrabs12
    > ------------------------------------------------------------------------
    > jrabs12's Profile:
    > http://www.excelforum.com/member.php...o&userid=37194
    > View this thread: http://www.excelforum.com/showthread...hreadid=569032
    >




  14. #14
    Pete_UK
    Guest

    Re: Help making Negative numbers to become zero

    Depending on your Regional Settings, you may need to use a semicolon
    ( instead of the commas in the formulae given.

    Hope this helps.

    Pete

    jrabs12 wrote:
    > None of these options are working, it still just continues to show me my
    > negative result.
    >
    >
    > --
    > jrabs12
    > ------------------------------------------------------------------------
    > jrabs12's Profile: http://www.excelforum.com/member.php...o&userid=37194
    > View this thread: http://www.excelforum.com/showthread...hreadid=569032



  15. #15
    Registered User
    Join Date
    08-07-2006
    Posts
    3
    I am sorry, I figured out the problem. I have made the corrections and the MAX formula is working well. It changes accordingly when i change my current stock price. Yet, I am experiencing a certain problem still, Instead of displaying a "0" it is just displaying a "-" how do i change this?????

  16. #16
    Guest

    Re: Help making Negative numbers to become zero

    Hi

    The cell may have special formatting properties to show - rather than 0. Go
    to Format/Cell and set to General.

    Andy.

    "jrabs12" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I am sorry, I figured out the problem. I have made the corrections and
    > the MAX formula is working well. It changes accordingly when i change
    > my current stock price. Yet, I am experiencing a certain problem still,
    > Instead of displaying a "0" it is just displaying a "-" how do i change
    > this?????
    >
    >
    > --
    > jrabs12
    > ------------------------------------------------------------------------
    > jrabs12's Profile:
    > http://www.excelforum.com/member.php...o&userid=37194
    > View this thread: http://www.excelforum.com/showthread...hreadid=569032
    >




+ 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