+ Reply to Thread
Results 1 to 27 of 27

Finding the Min number needed, for bottom cell to be greater than top?

  1. #1
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Finding the Min number needed, for bottom cell to be greater than top?

    Hi, sorry for posting this twice but i wasn't sure which category it fell under!

    I have a slight problem with excel and and was wondering if anyone can help.

    I have 3 columns, A, B, C:

    Column A= Uncorrected Number
    Column B= Correction Factor
    Column C=Corrected Number (Column A-ColumnB)

    Column A Column B Column C
    2.40 0.51 1.89
    2.45 0.49 1.96
    2.47 0.55 1.92

    Problem:

    In Column C, the value in any Cell cannot be less than the number before it! ie, row 3 is incorrect and should be 1.961 or greater etc.

    I've tried using a goal seek function but it does not allow me to solve it for an equation, for example setting my to value as being C2>C1. Can anyone help me with this problem? It would be much appreciated. Thanks
    Last edited by NBVC; 03-17-2009 at 01:04 PM.

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,627

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    =if(a12-b12>c11;a12-b12;c11)
    Last edited by zbor; 03-17-2009 at 10:07 AM.

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    So you just want to add 0.001 if the subtraction yields value smaller than value above?

    Try:

    =MAX(A2-B2,C1+0.001)

    in C2, 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.

  4. #4
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Unhappy Re: Finding the Min number needed, for bottom cell to be greater than top?

    Sorry i couldnt get that to work, i forgot to mention that i dont want the increase to be greater than the number after say like this :

    Column A Column B Column C
    2.40 0.51 1.89
    2.45 0.49 1.96
    2.47 0.55 1.92
    2.45 0.47 1.98
    Last edited by Newbie2007; 03-17-2009 at 10:10 AM.

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    See my post to determine if that is what you need.

  6. #6
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    sorry its not quite it!

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    What's not quite it?

    What should it be?

  8. #8
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hi, could i send attach my excel file in here and show u want im stuck with? that make it clearer?

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Sure,

    in the reply box, click the paperclip icon to browse and upload your file

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hi,

    May be this in D2 copied down?

    =IF(A2-B2<D1,D1,A2-B2)
    oldchippy
    -------------


    Blessed are those who can give without remembering and take without forgetting

    If you are happy with the help you have received, please click the <--- STAR icon on the left - Thanks.

    Click here >>> Top Excel links for beginners to Experts

    Forum Rules >>>Please don't forget to read these

  11. #11
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hi the file is attached, Thank you very much for this
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    erm no luck:S thanks

  13. #13
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,627

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Formula is OK, but you need to correct it again

    Now, either change correction factor
    or what is result that you must get?

    If it's same as previous - take previous. Or you can find closes from other datas.

    Have to go now.. I have idea with MROUND, but don't have time to look for solution... maybe someone else can use it

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    See attached...

    I formatted column F to 8 digits to show the numbers are larger as you go down.. if you need to show the rounded figures to be larger we will need to introduce the Round() function.
    Attached Files Attached Files

  15. #15
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hi, Thank you very much for that, . Youve just made my day:D. Thank you! take care.

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    I am glad that is what you needed.

    Can you now please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save

  17. #17
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hey sorry is there a way to find the minum correction factor needed to make ur final values you posted to me? instead of the final values uve given?

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    What do you mean by minimum correction factor? How do you arrive at one?

  19. #19
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hey sorry was in a lecture!

    You see in the column spreadsheet i sent u, theres a column that says Correction factor, i was wondering isntead of getting those corrected settlements could i get the value of the correction factor needed to get that settlement in your the sheet you sent to me. thanks

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Wouldn't that be just a matter of changing the 0.001 in my formula to your correction factor reference, i.e column C

    so formula in F6 would now be:

    =IF(A6-C6<F5,F5+C6,A6-C6)

    See attached.
    Attached Files Attached Files

  21. #21
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Erm yes it would be! sorry about that! thanks ill close this and put solved on it now thanks:D!!! sorry for being a pain but this has helped me loads!! Thank you very much

  22. #22
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Hey sorry to be a pain again:S but that last one you sent doesnt work!?

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    When you say things like "it doesn't work" you need to describe exactly what is wrong. Why doesn't it work? And what should it be?

  24. #24
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Oh sorry,but when i check that the cells in column F are greater than the cell above it, it gives me false values, while im trying to attain all true!

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Well some of the correction factors in column C are negative.. causing the items in F to go downward... what "factor" should it use then?

  26. #26
    Registered User
    Join Date
    03-17-2009
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    15

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    erm do u have msn? or something i could i could explain it better on there? is that possible? or is there a chat thing on here?

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

    Re: Finding the Min number needed, for bottom cell to be greater than top?

    Better to continue here... so others benefit/can contribute.

+ 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