+ Reply to Thread
Results 1 to 5 of 5

how do I write a formula: if (cell address) is less than X add Y

  1. #1
    CTrophyMan
    Guest

    how do I write a formula: if (cell address) is less than X add Y

    I am using Excel 2003 and I want to write a formula to add 2 cells with a
    condition that is the second cell value is less than a preset amount, i.e.
    $7.50 then add the preset amount instead of the value in the second cell.

  2. #2
    Bob Phillips
    Guest

    Re: how do I write a formula: if (cell address) is less than X add Y

    =a1+MAX(7.5,a2)

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "CTrophyMan" <[email protected]> wrote in message
    news:[email protected]...
    > I am using Excel 2003 and I want to write a formula to add 2 cells with a
    > condition that is the second cell value is less than a preset amount, i.e.
    > $7.50 then add the preset amount instead of the value in the second cell.




  3. #3
    Niek Otten
    Guest

    Re: how do I write a formula: if (cell address) is less than X add Y

    =A1+(MAX(7.5,B1))

    --
    Kind regards,

    Niek Otten

    "CTrophyMan" <[email protected]> wrote in message
    news:[email protected]...
    >I am using Excel 2003 and I want to write a formula to add 2 cells with a
    > condition that is the second cell value is less than a preset amount, i.e.
    > $7.50 then add the preset amount instead of the value in the second cell.




  4. #4
    Valued Forum Contributor
    Join Date
    06-30-2005
    Location
    Verwood, Dorset, England
    MS-Off Ver
    Excel 2000
    Posts
    479
    Quote Originally Posted by CTrophyMan
    I am using Excel 2003 and I want to write a formula to add 2 cells with a
    condition that is the second cell value is less than a preset amount, i.e.
    $7.50 then add the preset amount instead of the value in the second cell.
    Hi CTrophyMan

    Assuming your values to be in cells A1 & B1 in C1 use this formula

    =IF(B1<7.5,A1+7.5,A1+B1)
    Paul

  5. #5
    Cillian
    Guest

    RE: how do I write a formula: if (cell address) is less than X add Y

    HI

    Cell one is A1
    Cell Two is B1
    Formula in Cell three

    =if(B1>=7.5, SUM(A1:B1), A1+7.5)
    --
    Cillian


    "CTrophyMan" wrote:

    > I am using Excel 2003 and I want to write a formula to add 2 cells with a
    > condition that is the second cell value is less than a preset amount, i.e.
    > $7.50 then add the preset amount instead of the value in the second cell.


+ 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