+ Reply to Thread
Results 1 to 3 of 3

Change values automatically

Hybrid View

  1. #1
    Registered User
    Join Date
    06-03-2008
    Posts
    46

    Change values automatically

    Hello everyone!


    I have 2 huge columns with data. The value of every single cell in column 2 is the final result, unless

    1) this value is larger than 1800. Then the value has to be changed to 1800 (which is the final result of this cell)

    or

    2) the corresponding value in column 1 is smaller than 5. Then the value of column 2 has to be changed to 0. (which is the final result of this cell)

    How do I write this in column 3?

    Thanks in advance!

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582
    Assuming we're starting in B2
    =IF(A2<5,0,MIN(1800, Formula))
    where formula is whatever formula you put in B2 to generate the result initially. If that value is >1800, it'll choose 1800. Does that work for you?

    NOTE: This formula can be put into column 2. You don't need a column 3. If you want to have column 2 as is, then change the formula to
    =IF(A2<5,0,MIN(1800, B2))
    and place it in C2.

    ChemistB
    Last edited by ChemistB; 06-03-2008 at 11:11 AM.

  3. #3
    Registered User
    Join Date
    06-03-2008
    Posts
    46
    It works! Thank you!

+ 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