+ Reply to Thread
Results 1 to 3 of 3

Double amount only if below certain number

  1. #1
    Registered User
    Join Date
    11-17-2011
    Location
    Chattanooga, TN
    MS-Off Ver
    Excel 2010
    Posts
    2

    Double amount only if below certain number

    This is my line
    =SUM((F10*D10)-((G10/H10)*D10)-((I10/J10)*D10))/D10
    I need G10 to double its amount only if its $.60 and under.

    I've added an attachment of the file, I also need to know how to get rid of #DIV/0 when I don't have any data in the above cells.
    Attached Files Attached Files
    Last edited by kgore13; 11-17-2011 at 11:10 PM. Reason: Solved

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Double amount only if below certain number

    Try:

    =IF(D10="","",((F10*D10)-((G10*IF(G10<=0.6,2,1)/H10)*D10)-((I10/J10)*D10))/D10)

    and

    =IF(D10="","",K10*D10)

    copied down
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    11-17-2011
    Location
    Chattanooga, TN
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Double amount only if below certain number

    Thanks so much it all worked, a lifesaver!

+ 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